GUISkin.json 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027
  1. [
  2. {
  3. "name": "Blank"
  4. },
  5. {
  6. "name": "Texture"
  7. },
  8. {
  9. "fixedHeight": true,
  10. "font": "arial.ttf",
  11. "height": 14,
  12. "minWidth": 10,
  13. "name": "Label",
  14. "normal": {
  15. "textColor": {
  16. "a": 1.0,
  17. "b": 0.699999988079071,
  18. "g": 0.699999988079071,
  19. "r": 0.699999988079071
  20. }
  21. }
  22. },
  23. {
  24. "border": {
  25. "bottom": 1,
  26. "left": 1,
  27. "right": 1,
  28. "top": 1
  29. },
  30. "focused": {
  31. "texture": "WindowFrameFocused.png"
  32. },
  33. "name": "WindowFrame",
  34. "normal": {
  35. "texture": "WindowFrameNormal.png"
  36. }
  37. },
  38. {
  39. "active": {
  40. "textColor": {
  41. "a": 1.0,
  42. "b": 0.0,
  43. "g": 0.0,
  44. "r": 0.0
  45. },
  46. "texture": "ButtonActive.png"
  47. },
  48. "activeOn": {
  49. "textColor": {
  50. "a": 1.0,
  51. "b": 0.0,
  52. "g": 0.0,
  53. "r": 0.0
  54. },
  55. "texture": "ButtonActive.png"
  56. },
  57. "border": {
  58. "bottom": 4,
  59. "left": 2,
  60. "right": 2,
  61. "top": 2
  62. },
  63. "contentOffset": {
  64. "bottom": 0,
  65. "left": 3,
  66. "right": 3,
  67. "top": 2
  68. },
  69. "fixedHeight": true,
  70. "font": "arial.ttf",
  71. "height": 21,
  72. "hover": {
  73. "textColor": {
  74. "a": 1.0,
  75. "b": 0.699999988079071,
  76. "g": 0.699999988079071,
  77. "r": 0.699999988079071
  78. },
  79. "texture": "ButtonHover.png"
  80. },
  81. "hoverOn": {
  82. "textColor": {
  83. "a": 1.0,
  84. "b": 0.0,
  85. "g": 0.0,
  86. "r": 0.0
  87. },
  88. "texture": "ButtonActive.png"
  89. },
  90. "margins": {
  91. "bottom": 2,
  92. "left": 0,
  93. "right": 0,
  94. "top": 0
  95. },
  96. "minWidth": 20,
  97. "name": "Button",
  98. "normal": {
  99. "textColor": {
  100. "a": 1.0,
  101. "b": 0.699999988079071,
  102. "g": 0.699999988079071,
  103. "r": 0.699999988079071
  104. },
  105. "texture": "ButtonNormal.png"
  106. },
  107. "normalOn": {
  108. "textColor": {
  109. "a": 1.0,
  110. "b": 0.0,
  111. "g": 0.0,
  112. "r": 0.0
  113. },
  114. "texture": "ButtonActive.png"
  115. },
  116. "focused": {
  117. "textColor": {
  118. "a": 1.0,
  119. "b": 0.699999988079071,
  120. "g": 0.699999988079071,
  121. "r": 0.699999988079071
  122. },
  123. "texture": "ButtonFocused.png"
  124. },
  125. "focusedOn": {
  126. "textColor": {
  127. "a": 1.0,
  128. "b": 0.0,
  129. "g": 0.0,
  130. "r": 0.0
  131. },
  132. "texture": "ButtonFocused.png"
  133. },
  134. "focusedHover": {
  135. "textColor": {
  136. "a": 1.0,
  137. "b": 0.699999988079071,
  138. "g": 0.699999988079071,
  139. "r": 0.699999988079071
  140. },
  141. "texture": "ButtonFocusedHover.png"
  142. },
  143. "focusedHoverOn": {
  144. "textColor": {
  145. "a": 1.0,
  146. "b": 0.0,
  147. "g": 0.0,
  148. "r": 0.0
  149. },
  150. "texture": "ButtonFocusedHover.png"
  151. },
  152. "textHorzAlign": 1,
  153. "textVertAlign": 1
  154. },
  155. {
  156. "active": {
  157. "textColor": {
  158. "a": 1.0,
  159. "b": 0.0,
  160. "g": 0.0,
  161. "r": 0.0
  162. },
  163. "texture": "ButtonLeftActive.png"
  164. },
  165. "activeOn": {
  166. "textColor": {
  167. "a": 1.0,
  168. "b": 0.0,
  169. "g": 0.0,
  170. "r": 0.0
  171. },
  172. "texture": "ButtonLeftActive.png"
  173. },
  174. "border": {
  175. "bottom": 4,
  176. "left": 7,
  177. "right": 2,
  178. "top": 2
  179. },
  180. "contentOffset": {
  181. "bottom": 0,
  182. "left": 7,
  183. "right": 3,
  184. "top": 2
  185. },
  186. "fixedHeight": true,
  187. "font": "arial.ttf",
  188. "height": 21,
  189. "hover": {
  190. "textColor": {
  191. "a": 1.0,
  192. "b": 0.699999988079071,
  193. "g": 0.699999988079071,
  194. "r": 0.699999988079071
  195. },
  196. "texture": "ButtonLeftHover.png"
  197. },
  198. "hoverOn": {
  199. "textColor": {
  200. "a": 1.0,
  201. "b": 0.0,
  202. "g": 0.0,
  203. "r": 0.0
  204. },
  205. "texture": "ButtonLeftActive.png"
  206. },
  207. "margins": {
  208. "bottom": 2,
  209. "left": 0,
  210. "right": 0,
  211. "top": 0
  212. },
  213. "minWidth": 20,
  214. "name": "ButtonLeft",
  215. "normal": {
  216. "textColor": {
  217. "a": 1.0,
  218. "b": 0.699999988079071,
  219. "g": 0.699999988079071,
  220. "r": 0.699999988079071
  221. },
  222. "texture": "ButtonLeftNormal.png"
  223. },
  224. "normalOn": {
  225. "textColor": {
  226. "a": 1.0,
  227. "b": 0.0,
  228. "g": 0.0,
  229. "r": 0.0
  230. },
  231. "texture": "ButtonLeftActive.png"
  232. },
  233. "focused": {
  234. "textColor": {
  235. "a": 1.0,
  236. "b": 0.699999988079071,
  237. "g": 0.699999988079071,
  238. "r": 0.699999988079071
  239. },
  240. "texture": "ButtonLeftFocused.png"
  241. },
  242. "focusedOn": {
  243. "textColor": {
  244. "a": 1.0,
  245. "b": 0.0,
  246. "g": 0.0,
  247. "r": 0.0
  248. },
  249. "texture": "ButtonLeftFocused.png"
  250. },
  251. "focusedHover": {
  252. "textColor": {
  253. "a": 1.0,
  254. "b": 0.699999988079071,
  255. "g": 0.699999988079071,
  256. "r": 0.699999988079071
  257. },
  258. "texture": "ButtonLeftFocusedHover.png"
  259. },
  260. "focusedHoverOn": {
  261. "textColor": {
  262. "a": 1.0,
  263. "b": 0.0,
  264. "g": 0.0,
  265. "r": 0.0
  266. },
  267. "texture": "ButtonLeftFocusedHover.png"
  268. },
  269. "textHorzAlign": 1,
  270. "textVertAlign": 1
  271. },
  272. {
  273. "active": {
  274. "textColor": {
  275. "a": 1.0,
  276. "b": 0.0,
  277. "g": 0.0,
  278. "r": 0.0
  279. },
  280. "texture": "ButtonRightActive.png"
  281. },
  282. "activeOn": {
  283. "textColor": {
  284. "a": 1.0,
  285. "b": 0.0,
  286. "g": 0.0,
  287. "r": 0.0
  288. },
  289. "texture": "ButtonRightActive.png"
  290. },
  291. "border": {
  292. "bottom": 4,
  293. "left": 2,
  294. "right": 7,
  295. "top": 2
  296. },
  297. "contentOffset": {
  298. "bottom": 0,
  299. "left": 3,
  300. "right": 7,
  301. "top": 2
  302. },
  303. "fixedHeight": true,
  304. "font": "arial.ttf",
  305. "height": 21,
  306. "hover": {
  307. "textColor": {
  308. "a": 1.0,
  309. "b": 0.699999988079071,
  310. "g": 0.699999988079071,
  311. "r": 0.699999988079071
  312. },
  313. "texture": "ButtonRightHover.png"
  314. },
  315. "hoverOn": {
  316. "textColor": {
  317. "a": 1.0,
  318. "b": 0.0,
  319. "g": 0.0,
  320. "r": 0.0
  321. },
  322. "texture": "ButtonRightActive.png"
  323. },
  324. "margins": {
  325. "bottom": 2,
  326. "left": 0,
  327. "right": 0,
  328. "top": 0
  329. },
  330. "minWidth": 20,
  331. "name": "ButtonRight",
  332. "normal": {
  333. "textColor": {
  334. "a": 1.0,
  335. "b": 0.699999988079071,
  336. "g": 0.699999988079071,
  337. "r": 0.699999988079071
  338. },
  339. "texture": "ButtonRightNormal.png"
  340. },
  341. "normalOn": {
  342. "textColor": {
  343. "a": 1.0,
  344. "b": 0.0,
  345. "g": 0.0,
  346. "r": 0.0
  347. },
  348. "texture": "ButtonRightActive.png"
  349. },
  350. "focused": {
  351. "textColor": {
  352. "a": 1.0,
  353. "b": 0.699999988079071,
  354. "g": 0.699999988079071,
  355. "r": 0.699999988079071
  356. },
  357. "texture": "ButtonRightFocused.png"
  358. },
  359. "focusedOn": {
  360. "textColor": {
  361. "a": 1.0,
  362. "b": 0.0,
  363. "g": 0.0,
  364. "r": 0.0
  365. },
  366. "texture": "ButtonRightFocused.png"
  367. },
  368. "focusedHover": {
  369. "textColor": {
  370. "a": 1.0,
  371. "b": 0.699999988079071,
  372. "g": 0.699999988079071,
  373. "r": 0.699999988079071
  374. },
  375. "texture": "ButtonRightFocusedHover.png"
  376. },
  377. "focusedHoverOn": {
  378. "textColor": {
  379. "a": 1.0,
  380. "b": 0.0,
  381. "g": 0.0,
  382. "r": 0.0
  383. },
  384. "texture": "ButtonRightFocusedHover.png"
  385. },
  386. "textHorzAlign": 1,
  387. "textVertAlign": 1
  388. },
  389. {
  390. "active": {
  391. "texture": "ToggleHover.png"
  392. },
  393. "activeOn": {
  394. "texture": "ToggleHoverOn.png"
  395. },
  396. "fixedHeight": true,
  397. "fixedWidth": true,
  398. "height": 15,
  399. "hover": {
  400. "texture": "ToggleHover.png"
  401. },
  402. "hoverOn": {
  403. "texture": "ToggleHoverOn.png"
  404. },
  405. "margins": {
  406. "bottom": 2,
  407. "left": 0,
  408. "right": 0,
  409. "top": 0
  410. },
  411. "name": "Toggle",
  412. "normal": {
  413. "texture": "ToggleNormal.png"
  414. },
  415. "normalOn": {
  416. "texture": "ToggleNormalOn.png"
  417. },
  418. "focused": {
  419. "texture": "ToggleFocused.png"
  420. },
  421. "focusedOn": {
  422. "texture": "ToggleFocusedOn.png"
  423. },
  424. "focusedHover": {
  425. "texture": "ToggleFocusedHover.png"
  426. },
  427. "focusedHoverOn": {
  428. "texture": "ToggleFocusedHoverOn.png"
  429. },
  430. "width": 13
  431. },
  432. {
  433. "fixedHeight": true,
  434. "height": 15,
  435. "margins": {
  436. "bottom": 2,
  437. "left": 2,
  438. "right": 2,
  439. "top": 2
  440. },
  441. "minWidth": 10,
  442. "name": "Color"
  443. },
  444. {
  445. "name": "WindowBackground",
  446. "normal": {
  447. "texture": "WindowBackground.png"
  448. }
  449. },
  450. {
  451. "fixedHeight": true,
  452. "height": 16,
  453. "name": "TabBarBackground",
  454. "normal": {
  455. "texture": "TabBarBackground.png"
  456. }
  457. },
  458. {
  459. "active": {
  460. "textColor": {
  461. "a": 1.0,
  462. "b": 0.0,
  463. "g": 0.0,
  464. "r": 0.0
  465. },
  466. "texture": "TabButtonFocused.png"
  467. },
  468. "activeOn": {
  469. "textColor": {
  470. "a": 1.0,
  471. "b": 0.0,
  472. "g": 0.0,
  473. "r": 0.0
  474. },
  475. "texture": "TabButtonFocused.png"
  476. },
  477. "border": {
  478. "bottom": 0,
  479. "left": 12,
  480. "right": 12,
  481. "top": 0
  482. },
  483. "contentOffset": {
  484. "bottom": 0,
  485. "left": 6,
  486. "right": 6,
  487. "top": 3
  488. },
  489. "fixedHeight": true,
  490. "font": "arial.ttf",
  491. "height": 15,
  492. "hover": {
  493. "textColor": {
  494. "a": 1.0,
  495. "b": 0.699999988079071,
  496. "g": 0.699999988079071,
  497. "r": 0.699999988079071
  498. },
  499. "texture": "TabButtonNormal.png"
  500. },
  501. "hoverOn": {
  502. "textColor": {
  503. "a": 1.0,
  504. "b": 0.0,
  505. "g": 0.0,
  506. "r": 0.0
  507. },
  508. "texture": "TabButtonFocused.png"
  509. },
  510. "margins": {
  511. "bottom": 0,
  512. "left": 5,
  513. "right": 5,
  514. "top": 0
  515. },
  516. "maxWidth": 110,
  517. "minWidth": 24,
  518. "name": "TabbedBarBtn",
  519. "normal": {
  520. "textColor": {
  521. "a": 1.0,
  522. "b": 0.699999988079071,
  523. "g": 0.699999988079071,
  524. "r": 0.699999988079071
  525. },
  526. "texture": "TabButtonNormal.png"
  527. },
  528. "normalOn": {
  529. "textColor": {
  530. "a": 1.0,
  531. "b": 0.0,
  532. "g": 0.0,
  533. "r": 0.0
  534. },
  535. "texture": "TabButtonFocused.png"
  536. },
  537. "textHorzAlign": 1,
  538. "textVertAlign": 1
  539. },
  540. {
  541. "fixedHeight": true,
  542. "fixedWidth": true,
  543. "height": 13,
  544. "name": "TabbedBarDropArea",
  545. "width": 6
  546. },
  547. {
  548. "fixedHeight": true,
  549. "height": 17,
  550. "name": "TitleBarBackground",
  551. "normal": {
  552. "texture": "TitleBarBackground.png"
  553. }
  554. },
  555. {
  556. "active": {
  557. "texture": "MinimizeButtonActive.png"
  558. },
  559. "fixedHeight": true,
  560. "fixedWidth": true,
  561. "height": 14,
  562. "hover": {
  563. "texture": "MinimizeButtonHover.png"
  564. },
  565. "name": "WinMinimizeBtn",
  566. "normal": {
  567. "texture": "MinimizeButtonNormal.png"
  568. },
  569. "width": 14
  570. },
  571. {
  572. "active": {
  573. "texture": "MaximizeButtonActive.png"
  574. },
  575. "fixedHeight": true,
  576. "fixedWidth": true,
  577. "height": 14,
  578. "hover": {
  579. "texture": "MaximizeButtonHover.png"
  580. },
  581. "name": "WinMaximizeBtn",
  582. "normal": {
  583. "texture": "MaximizeButtonNormal.png"
  584. },
  585. "width": 14
  586. },
  587. {
  588. "active": {
  589. "texture": "CloseButtonActive.png"
  590. },
  591. "fixedHeight": true,
  592. "fixedWidth": true,
  593. "height": 14,
  594. "hover": {
  595. "texture": "CloseButtonHover.png"
  596. },
  597. "name": "WinCloseBtn",
  598. "normal": {
  599. "texture": "CloseButtonNormal.png"
  600. },
  601. "width": 14
  602. },
  603. {
  604. "active": {
  605. "textColor": {
  606. "a": 1.0,
  607. "b": 0.699999988079071,
  608. "g": 0.699999988079071,
  609. "r": 0.699999988079071
  610. },
  611. "texture": "InputBoxNormal.png"
  612. },
  613. "border": {
  614. "bottom": 1,
  615. "left": 1,
  616. "right": 3,
  617. "top": 4
  618. },
  619. "contentOffset": {
  620. "bottom": 4,
  621. "left": 4,
  622. "right": 4,
  623. "top": 4
  624. },
  625. "fixedHeight": true,
  626. "focused": {
  627. "textColor": {
  628. "a": 1.0,
  629. "b": 0.699999988079071,
  630. "g": 0.699999988079071,
  631. "r": 0.699999988079071
  632. },
  633. "texture": "InputBoxActive.png"
  634. },
  635. "font": "arial.ttf",
  636. "height": 19,
  637. "hover": {
  638. "textColor": {
  639. "a": 1.0,
  640. "b": 0.699999988079071,
  641. "g": 0.699999988079071,
  642. "r": 0.699999988079071
  643. },
  644. "texture": "InputBoxHover.png"
  645. },
  646. "minWidth": 10,
  647. "name": "InputBox",
  648. "normal": {
  649. "textColor": {
  650. "a": 1.0,
  651. "b": 0.699999988079071,
  652. "g": 0.699999988079071,
  653. "r": 0.699999988079071
  654. },
  655. "texture": "InputBoxNormal.png"
  656. }
  657. },
  658. {
  659. "active": {
  660. "texture": "ScrollArrowUpActive.png"
  661. },
  662. "fixedHeight": true,
  663. "fixedWidth": true,
  664. "height": 11,
  665. "hover": {
  666. "texture": "ScrollArrowUpHover.png"
  667. },
  668. "name": "ScrollUpBtn",
  669. "normal": {
  670. "texture": "ScrollArrowUpNormal.png"
  671. },
  672. "width": 13
  673. },
  674. {
  675. "active": {
  676. "texture": "ScrollArrowDownActive.png"
  677. },
  678. "fixedHeight": true,
  679. "fixedWidth": true,
  680. "height": 11,
  681. "hover": {
  682. "texture": "ScrollArrowDownHover.png"
  683. },
  684. "name": "ScrollDownBtn",
  685. "normal": {
  686. "texture": "ScrollArrowDownNormal.png"
  687. },
  688. "width": 13
  689. },
  690. {
  691. "active": {
  692. "texture": "ScrollArrowLeftActive.png"
  693. },
  694. "fixedHeight": true,
  695. "fixedWidth": true,
  696. "height": 13,
  697. "hover": {
  698. "texture": "ScrollArrowLeftHover.png"
  699. },
  700. "name": "ScrollLeftBtn",
  701. "normal": {
  702. "texture": "ScrollArrowLeftNormal.png"
  703. },
  704. "width": 11
  705. },
  706. {
  707. "active": {
  708. "texture": "ScrollArrowRightActive.png"
  709. },
  710. "fixedHeight": true,
  711. "fixedWidth": true,
  712. "height": 13,
  713. "hover": {
  714. "texture": "ScrollArrowRightHover.png"
  715. },
  716. "name": "ScrollRightBtn",
  717. "normal": {
  718. "texture": "ScrollArrowRightNormal.png"
  719. },
  720. "width": 11
  721. },
  722. {
  723. "active": {
  724. "texture": "ScrollBarHHandleActive.png"
  725. },
  726. "border": {
  727. "bottom": 0,
  728. "left": 4,
  729. "right": 4,
  730. "top": 0
  731. },
  732. "fixedHeight": true,
  733. "height": 13,
  734. "hover": {
  735. "texture": "ScrollBarHHandleHover.png"
  736. },
  737. "minWidth": 10,
  738. "name": "ScrollBarHorzBtn",
  739. "normal": {
  740. "texture": "ScrollBarHHandleNormal.png"
  741. }
  742. },
  743. {
  744. "active": {
  745. "texture": "ScrollBarVHandleActive.png"
  746. },
  747. "border": {
  748. "bottom": 4,
  749. "left": 0,
  750. "right": 0,
  751. "top": 4
  752. },
  753. "fixedWidth": true,
  754. "hover": {
  755. "texture": "ScrollBarVHandleHover.png"
  756. },
  757. "minHeight": 10,
  758. "name": "ScrollBarVertBtn",
  759. "normal": {
  760. "texture": "ScrollBarVHandleNormal.png"
  761. },
  762. "width": 13
  763. },
  764. {
  765. "active": {
  766. "texture": "ScrollBarVBackground.png"
  767. },
  768. "fixedWidth": true,
  769. "hover": {
  770. "texture": "ScrollBarVBackground.png"
  771. },
  772. "minHeight": 8,
  773. "name": "ScrollBarVert",
  774. "normal": {
  775. "texture": "ScrollBarVBackground.png"
  776. },
  777. "subStyles": [
  778. {
  779. "name": "UIScrollBarHHandle",
  780. "style": "ScrollBarHorzBtn"
  781. },
  782. {
  783. "name": "UIScrollBarVHandle",
  784. "style": "ScrollBarVertBtn"
  785. }
  786. ],
  787. "width": 16
  788. },
  789. {
  790. "active": {
  791. "texture": "ScrollBarHBackground.png"
  792. },
  793. "fixedHeight": true,
  794. "height": 16,
  795. "hover": {
  796. "texture": "ScrollBarHBackground.png"
  797. },
  798. "minWidth": 8,
  799. "name": "ScrollBarHorz",
  800. "normal": {
  801. "texture": "ScrollBarHBackground.png"
  802. },
  803. "subStyles": [
  804. {
  805. "name": "UIScrollBarHHandle",
  806. "style": "ScrollBarHorzBtn"
  807. },
  808. {
  809. "name": "UIScrollBarVHandle",
  810. "style": "ScrollBarVertBtn"
  811. }
  812. ]
  813. },
  814. {
  815. "active": {
  816. "texture": "ScrollBarHHandleResizeableActive.png"
  817. },
  818. "border": {
  819. "bottom": 0,
  820. "left": 7,
  821. "right": 7,
  822. "top": 0
  823. },
  824. "fixedHeight": true,
  825. "height": 13,
  826. "hover": {
  827. "texture": "ScrollBarHHandleResizeableHover.png"
  828. },
  829. "minWidth": 15,
  830. "name": "ScrollBarResizeableHorzBtn",
  831. "normal": {
  832. "texture": "ScrollBarHHandleResizeableNormal.png"
  833. }
  834. },
  835. {
  836. "active": {
  837. "texture": "ScrollBarVHandleResizeableActive.png"
  838. },
  839. "border": {
  840. "bottom": 7,
  841. "left": 0,
  842. "right": 0,
  843. "top": 7
  844. },
  845. "fixedWidth": true,
  846. "hover": {
  847. "texture": "ScrollBarVHandleResizeableHover.png"
  848. },
  849. "minHeight": 15,
  850. "name": "ScrollBarResizeableVertBtn",
  851. "normal": {
  852. "texture": "ScrollBarVHandleResizeableNormal.png"
  853. },
  854. "width": 13
  855. },
  856. {
  857. "active": {
  858. "texture": "ScrollBarVBackground.png"
  859. },
  860. "fixedWidth": true,
  861. "hover": {
  862. "texture": "ScrollBarVBackground.png"
  863. },
  864. "minHeight": 15,
  865. "name": "ResizeableScrollBarVert",
  866. "normal": {
  867. "texture": "ScrollBarVBackground.png"
  868. },
  869. "subStyles": [
  870. {
  871. "name": "UIScrollBarHHandle",
  872. "style": "ScrollBarResizeableHorzBtn"
  873. },
  874. {
  875. "name": "UIScrollBarVHandle",
  876. "style": "ScrollBarResizeableVertBtn"
  877. }
  878. ],
  879. "width": 16
  880. },
  881. {
  882. "active": {
  883. "texture": "ScrollBarHBackground.png"
  884. },
  885. "fixedHeight": true,
  886. "height": 16,
  887. "hover": {
  888. "texture": "ScrollBarHBackground.png"
  889. },
  890. "minWidth": 15,
  891. "name": "ResizeableScrollBarHorz",
  892. "normal": {
  893. "texture": "ScrollBarHBackground.png"
  894. },
  895. "subStyles": [
  896. {
  897. "name": "UIScrollBarHHandle",
  898. "style": "ScrollBarResizeableHorzBtn"
  899. },
  900. {
  901. "name": "UIScrollBarVHandle",
  902. "style": "ScrollBarResizeableVertBtn"
  903. }
  904. ]
  905. },
  906. {
  907. "active": {
  908. "textColor": {
  909. "a": 1.0,
  910. "b": 0.699999988079071,
  911. "g": 0.699999988079071,
  912. "r": 0.699999988079071
  913. },
  914. "texture": "DropDownButtonActive.png"
  915. },
  916. "activeOn": {
  917. "textColor": {
  918. "a": 1.0,
  919. "b": 0.699999988079071,
  920. "g": 0.699999988079071,
  921. "r": 0.699999988079071
  922. },
  923. "texture": "DropDownButtonActive.png"
  924. },
  925. "border": {
  926. "bottom": 4,
  927. "left": 2,
  928. "right": 16,
  929. "top": 2
  930. },
  931. "contentOffset": {
  932. "bottom": 2,
  933. "left": 3,
  934. "right": 18,
  935. "top": 2
  936. },
  937. "fixedHeight": true,
  938. "font": "arial.ttf",
  939. "height": 21,
  940. "hover": {
  941. "textColor": {
  942. "a": 1.0,
  943. "b": 0.699999988079071,
  944. "g": 0.699999988079071,
  945. "r": 0.699999988079071
  946. },
  947. "texture": "DropDownButtonHover.png"
  948. },
  949. "hoverOn": {
  950. "textColor": {
  951. "a": 1.0,
  952. "b": 0.699999988079071,
  953. "g": 0.699999988079071,
  954. "r": 0.699999988079071
  955. },
  956. "texture": "DropDownButtonActive.png"
  957. },
  958. "margins": {
  959. "bottom": 2,
  960. "left": 0,
  961. "right": 0,
  962. "top": 0
  963. },
  964. "minWidth": 20,
  965. "name": "ListBox",
  966. "normal": {
  967. "textColor": {
  968. "a": 1.0,
  969. "b": 0.699999988079071,
  970. "g": 0.699999988079071,
  971. "r": 0.699999988079071
  972. },
  973. "texture": "DropDownButtonNormal.png"
  974. },
  975. "normalOn": {
  976. "textColor": {
  977. "a": 1.0,
  978. "b": 0.699999988079071,
  979. "g": 0.699999988079071,
  980. "r": 0.699999988079071
  981. },
  982. "texture": "DropDownButtonActive.png"
  983. },
  984. "focused": {
  985. "textColor": {
  986. "a": 1.0,
  987. "b": 0.699999988079071,
  988. "g": 0.699999988079071,
  989. "r": 0.699999988079071
  990. },
  991. "texture": "DropDownButtonFocused.png"
  992. },
  993. "focusedOn": {
  994. "textColor": {
  995. "a": 1.0,
  996. "b": 0.699999988079071,
  997. "g": 0.699999988079071,
  998. "r": 0.699999988079071
  999. },
  1000. "texture": "DropDownButtonFocused.png"
  1001. },
  1002. "focusedHover": {
  1003. "textColor": {
  1004. "a": 1.0,
  1005. "b": 0.699999988079071,
  1006. "g": 0.699999988079071,
  1007. "r": 0.699999988079071
  1008. },
  1009. "texture": "DropDownButtonFocusedHover.png"
  1010. },
  1011. "focusedHoverOn": {
  1012. "textColor": {
  1013. "a": 1.0,
  1014. "b": 0.699999988079071,
  1015. "g": 0.699999988079071,
  1016. "r": 0.699999988079071
  1017. },
  1018. "texture": "DropDownButtonFocusedHover.png"
  1019. },
  1020. "textVertAlign": 1
  1021. },
  1022. {
  1023. "active": {
  1024. "texture": "DropDownBoxArrowUpHover.png"
  1025. },
  1026. "fixedHeight": true,
  1027. "fixedWidth": true,
  1028. "height": 12,
  1029. "hover": {
  1030. "texture": "DropDownBoxArrowUpHover.png"
  1031. },
  1032. "name": "ListBoxScrollUpBtn",
  1033. "normal": {
  1034. "texture": "DropDownBoxArrowUpNormal.png"
  1035. },
  1036. "width": 8
  1037. },
  1038. {
  1039. "active": {
  1040. "texture": "DropDownBoxArrowUpHover.png"
  1041. },
  1042. "fixedHeight": true,
  1043. "fixedWidth": true,
  1044. "height": 12,
  1045. "hover": {
  1046. "texture": "DropDownBoxArrowUpHover.png"
  1047. },
  1048. "name": "MenuBarScrollUpBtn",
  1049. "normal": {
  1050. "texture": "DropDownBoxArrowUpNormal.png"
  1051. },
  1052. "width": 8
  1053. },
  1054. {
  1055. "active": {
  1056. "texture": "DropDownBoxArrowUpHover.png"
  1057. },
  1058. "fixedHeight": true,
  1059. "fixedWidth": true,
  1060. "height": 12,
  1061. "hover": {
  1062. "texture": "DropDownBoxArrowUpHover.png"
  1063. },
  1064. "name": "ContextMenuScrollUpBtn",
  1065. "normal": {
  1066. "texture": "DropDownBoxArrowUpNormal.png"
  1067. },
  1068. "width": 8
  1069. },
  1070. {
  1071. "active": {
  1072. "texture": "DropDownBoxArrowDownHover.png"
  1073. },
  1074. "fixedHeight": true,
  1075. "fixedWidth": true,
  1076. "height": 12,
  1077. "hover": {
  1078. "texture": "DropDownBoxArrowDownHover.png"
  1079. },
  1080. "name": "ListBoxScrollDownBtn",
  1081. "normal": {
  1082. "texture": "DropDownBoxArrowDownNormal.png"
  1083. },
  1084. "width": 8
  1085. },
  1086. {
  1087. "active": {
  1088. "texture": "DropDownBoxArrowDownHover.png"
  1089. },
  1090. "fixedHeight": true,
  1091. "fixedWidth": true,
  1092. "height": 12,
  1093. "hover": {
  1094. "texture": "DropDownBoxArrowDownHover.png"
  1095. },
  1096. "name": "MenuBarScrollDownBtn",
  1097. "normal": {
  1098. "texture": "DropDownBoxArrowDownNormal.png"
  1099. },
  1100. "width": 8
  1101. },
  1102. {
  1103. "active": {
  1104. "texture": "DropDownBoxArrowDownHover.png"
  1105. },
  1106. "fixedHeight": true,
  1107. "fixedWidth": true,
  1108. "height": 12,
  1109. "hover": {
  1110. "texture": "DropDownBoxArrowDownHover.png"
  1111. },
  1112. "name": "ContextMenuScrollDownBtn",
  1113. "normal": {
  1114. "texture": "DropDownBoxArrowDownNormal.png"
  1115. },
  1116. "width": 8
  1117. },
  1118. {
  1119. "fixedWidth": true,
  1120. "height": 8,
  1121. "name": "ListBoxHandle",
  1122. "normal": {
  1123. "texture": "DropDownBoxScrollHandle.png"
  1124. },
  1125. "width": 8
  1126. },
  1127. {
  1128. "fixedWidth": true,
  1129. "height": 8,
  1130. "name": "MenuBarHandle",
  1131. "normal": {
  1132. "texture": "DropDownBoxScrollHandle.png"
  1133. },
  1134. "width": 8
  1135. },
  1136. {
  1137. "fixedWidth": true,
  1138. "height": 8,
  1139. "name": "ContextMenuHandle",
  1140. "normal": {
  1141. "texture": "DropDownBoxScrollHandle.png"
  1142. },
  1143. "width": 8
  1144. },
  1145. {
  1146. "border": {
  1147. "bottom": 1,
  1148. "left": 1,
  1149. "right": 0,
  1150. "top": 1
  1151. },
  1152. "fixedWidth": true,
  1153. "height": 8,
  1154. "name": "ListBoxSidebarBg",
  1155. "normal": {
  1156. "texture": "DropDownBoxSideBg.png"
  1157. },
  1158. "width": 9
  1159. },
  1160. {
  1161. "border": {
  1162. "bottom": 1,
  1163. "left": 1,
  1164. "right": 0,
  1165. "top": 1
  1166. },
  1167. "fixedWidth": true,
  1168. "height": 8,
  1169. "name": "MenuBarSidebarBg",
  1170. "normal": {
  1171. "texture": "DropDownBoxSideBg.png"
  1172. },
  1173. "width": 9
  1174. },
  1175. {
  1176. "border": {
  1177. "bottom": 1,
  1178. "left": 1,
  1179. "right": 0,
  1180. "top": 1
  1181. },
  1182. "fixedWidth": true,
  1183. "height": 8,
  1184. "name": "ContextMenuSidebarBg",
  1185. "normal": {
  1186. "texture": "DropDownBoxSideBg.png"
  1187. },
  1188. "width": 9
  1189. },
  1190. {
  1191. "active": {
  1192. "textColor": {
  1193. "a": 1.0,
  1194. "b": 0.699999988079071,
  1195. "g": 0.699999988079071,
  1196. "r": 0.699999988079071
  1197. },
  1198. "texture": "DropDownBoxEntryHover.png"
  1199. },
  1200. "activeOn": {
  1201. "textColor": {
  1202. "a": 1.0,
  1203. "b": 0.699999988079071,
  1204. "g": 0.699999988079071,
  1205. "r": 0.699999988079071
  1206. },
  1207. "texture": "DropDownBoxEntryHover.png"
  1208. },
  1209. "fixedHeight": true,
  1210. "font": "arial.ttf",
  1211. "height": 16,
  1212. "hover": {
  1213. "textColor": {
  1214. "a": 1.0,
  1215. "b": 0.699999988079071,
  1216. "g": 0.699999988079071,
  1217. "r": 0.699999988079071
  1218. },
  1219. "texture": "DropDownBoxEntryHover.png"
  1220. },
  1221. "hoverOn": {
  1222. "textColor": {
  1223. "a": 1.0,
  1224. "b": 0.699999988079071,
  1225. "g": 0.699999988079071,
  1226. "r": 0.699999988079071
  1227. },
  1228. "texture": "DropDownBoxEntryHover.png"
  1229. },
  1230. "name": "DropDownEntryBtn",
  1231. "normal": {
  1232. "textColor": {
  1233. "a": 1.0,
  1234. "b": 0.699999988079071,
  1235. "g": 0.699999988079071,
  1236. "r": 0.699999988079071
  1237. },
  1238. "texture": "DropDownBoxEntryNormal.png"
  1239. },
  1240. "normalOn": {
  1241. "textColor": {
  1242. "a": 1.0,
  1243. "b": 0.699999988079071,
  1244. "g": 0.699999988079071,
  1245. "r": 0.699999988079071
  1246. },
  1247. "texture": "DropDownBoxEntryHover.png"
  1248. },
  1249. "textVertAlign": 1,
  1250. "width": 30
  1251. },
  1252. {
  1253. "active": {
  1254. "textColor": {
  1255. "a": 1.0,
  1256. "b": 0.699999988079071,
  1257. "g": 0.699999988079071,
  1258. "r": 0.699999988079071
  1259. },
  1260. "texture": "DropDownBoxEntryToggleHover.png"
  1261. },
  1262. "activeOn": {
  1263. "textColor": {
  1264. "a": 1.0,
  1265. "b": 0.699999988079071,
  1266. "g": 0.699999988079071,
  1267. "r": 0.699999988079071
  1268. },
  1269. "texture": "DropDownBoxEntryToggleHoverOn.png"
  1270. },
  1271. "border": {
  1272. "bottom": 0,
  1273. "left": 17,
  1274. "right": 0,
  1275. "top": 0
  1276. },
  1277. "contentOffset": {
  1278. "bottom": 0,
  1279. "left": 17,
  1280. "right": 0,
  1281. "top": 0
  1282. },
  1283. "fixedHeight": true,
  1284. "font": "arial.ttf",
  1285. "height": 18,
  1286. "hover": {
  1287. "textColor": {
  1288. "a": 1.0,
  1289. "b": 0.699999988079071,
  1290. "g": 0.699999988079071,
  1291. "r": 0.699999988079071
  1292. },
  1293. "texture": "DropDownBoxEntryToggleHover.png"
  1294. },
  1295. "hoverOn": {
  1296. "textColor": {
  1297. "a": 1.0,
  1298. "b": 0.699999988079071,
  1299. "g": 0.699999988079071,
  1300. "r": 0.699999988079071
  1301. },
  1302. "texture": "DropDownBoxEntryToggleHoverOn.png"
  1303. },
  1304. "name": "DropDownEntryToggleBtn",
  1305. "normal": {
  1306. "textColor": {
  1307. "a": 1.0,
  1308. "b": 0.699999988079071,
  1309. "g": 0.699999988079071,
  1310. "r": 0.699999988079071
  1311. },
  1312. "texture": "DropDownBoxEntryToggleNormal.png"
  1313. },
  1314. "normalOn": {
  1315. "textColor": {
  1316. "a": 1.0,
  1317. "b": 0.699999988079071,
  1318. "g": 0.699999988079071,
  1319. "r": 0.699999988079071
  1320. },
  1321. "texture": "DropDownBoxEntryToggleNormalOn.png"
  1322. },
  1323. "textVertAlign": 1,
  1324. "width": 30
  1325. },
  1326. {
  1327. "active": {
  1328. "textColor": {
  1329. "a": 1.0,
  1330. "b": 0.699999988079071,
  1331. "g": 0.699999988079071,
  1332. "r": 0.699999988079071
  1333. },
  1334. "texture": "DropDownBoxExpandBtnHover.png"
  1335. },
  1336. "activeOn": {
  1337. "textColor": {
  1338. "a": 1.0,
  1339. "b": 0.699999988079071,
  1340. "g": 0.699999988079071,
  1341. "r": 0.699999988079071
  1342. },
  1343. "texture": "DropDownBoxExpandBtnHover.png"
  1344. },
  1345. "border": {
  1346. "bottom": 0,
  1347. "left": 0,
  1348. "right": 13,
  1349. "top": 0
  1350. },
  1351. "fixedHeight": true,
  1352. "font": "arial.ttf",
  1353. "height": 16,
  1354. "hover": {
  1355. "textColor": {
  1356. "a": 1.0,
  1357. "b": 0.699999988079071,
  1358. "g": 0.699999988079071,
  1359. "r": 0.699999988079071
  1360. },
  1361. "texture": "DropDownBoxExpandBtnHover.png"
  1362. },
  1363. "hoverOn": {
  1364. "textColor": {
  1365. "a": 1.0,
  1366. "b": 0.699999988079071,
  1367. "g": 0.699999988079071,
  1368. "r": 0.699999988079071
  1369. },
  1370. "texture": "DropDownBoxExpandBtnHover.png"
  1371. },
  1372. "name": "DropDownEntryExpBtn",
  1373. "normal": {
  1374. "textColor": {
  1375. "a": 1.0,
  1376. "b": 0.699999988079071,
  1377. "g": 0.699999988079071,
  1378. "r": 0.699999988079071
  1379. },
  1380. "texture": "DropDownBoxExpandBtnNormal.png"
  1381. },
  1382. "normalOn": {
  1383. "textColor": {
  1384. "a": 1.0,
  1385. "b": 0.699999988079071,
  1386. "g": 0.699999988079071,
  1387. "r": 0.699999988079071
  1388. },
  1389. "texture": "DropDownBoxExpandBtnHover.png"
  1390. },
  1391. "textVertAlign": 1,
  1392. "width": 30
  1393. },
  1394. {
  1395. "fixedHeight": true,
  1396. "height": 3,
  1397. "name": "DropDownSeparator",
  1398. "normal": {
  1399. "texture": "DropDownBoxSeparator.png"
  1400. },
  1401. "width": 30
  1402. },
  1403. {
  1404. "minHeight": 20,
  1405. "minWidth": 50,
  1406. "name": "ListBoxContent",
  1407. "subStyles": [
  1408. {
  1409. "name": "DropDownEntryBtn",
  1410. "style": "DropDownEntryBtn"
  1411. },
  1412. {
  1413. "name": "DropDownEntryExpBtn",
  1414. "style": "DropDownEntryExpBtn"
  1415. },
  1416. {
  1417. "name": "DropDownEntryToggleBtn",
  1418. "style": "DropDownEntryToggleBtn"
  1419. },
  1420. {
  1421. "name": "DropDownSeparator",
  1422. "style": "DropDownSeparator"
  1423. }
  1424. ]
  1425. },
  1426. {
  1427. "minHeight": 20,
  1428. "minWidth": 50,
  1429. "name": "MenuBarContent",
  1430. "subStyles": [
  1431. {
  1432. "name": "DropDownEntryBtn",
  1433. "style": "DropDownEntryBtn"
  1434. },
  1435. {
  1436. "name": "DropDownEntryExpBtn",
  1437. "style": "DropDownEntryExpBtn"
  1438. },
  1439. {
  1440. "name": "DropDownEntryToggleBtn",
  1441. "style": "DropDownEntryToggleBtn"
  1442. },
  1443. {
  1444. "name": "DropDownSeparator",
  1445. "style": "DropDownSeparator"
  1446. }
  1447. ]
  1448. },
  1449. {
  1450. "minHeight": 20,
  1451. "minWidth": 50,
  1452. "name": "ContextMenuContent",
  1453. "subStyles": [
  1454. {
  1455. "name": "DropDownEntryBtn",
  1456. "style": "DropDownEntryBtn"
  1457. },
  1458. {
  1459. "name": "DropDownEntryExpBtn",
  1460. "style": "DropDownEntryExpBtn"
  1461. },
  1462. {
  1463. "name": "DropDownEntryToggleBtn",
  1464. "style": "DropDownEntryToggleBtn"
  1465. },
  1466. {
  1467. "name": "DropDownSeparator",
  1468. "style": "DropDownSeparator"
  1469. }
  1470. ]
  1471. },
  1472. {
  1473. "active": {
  1474. "texture": "DropDownBoxBg.png"
  1475. },
  1476. "border": {
  1477. "bottom": 4,
  1478. "left": 2,
  1479. "right": 2,
  1480. "top": 2
  1481. },
  1482. "hover": {
  1483. "texture": "DropDownBoxBg.png"
  1484. },
  1485. "margins": {
  1486. "bottom": 6,
  1487. "left": 6,
  1488. "right": 6,
  1489. "top": 4
  1490. },
  1491. "name": "ListBoxFrame",
  1492. "normal": {
  1493. "texture": "DropDownBoxBg.png"
  1494. }
  1495. },
  1496. {
  1497. "active": {
  1498. "texture": "DropDownBoxBg.png"
  1499. },
  1500. "border": {
  1501. "bottom": 4,
  1502. "left": 2,
  1503. "right": 2,
  1504. "top": 2
  1505. },
  1506. "hover": {
  1507. "texture": "DropDownBoxBg.png"
  1508. },
  1509. "margins": {
  1510. "bottom": 6,
  1511. "left": 6,
  1512. "right": 6,
  1513. "top": 4
  1514. },
  1515. "name": "MenuBarFrame",
  1516. "normal": {
  1517. "texture": "DropDownBoxBg.png"
  1518. }
  1519. },
  1520. {
  1521. "active": {
  1522. "texture": "DropDownBoxBg.png"
  1523. },
  1524. "border": {
  1525. "bottom": 4,
  1526. "left": 2,
  1527. "right": 2,
  1528. "top": 2
  1529. },
  1530. "hover": {
  1531. "texture": "DropDownBoxBg.png"
  1532. },
  1533. "margins": {
  1534. "bottom": 6,
  1535. "left": 6,
  1536. "right": 6,
  1537. "top": 4
  1538. },
  1539. "name": "ContextMenuFrame",
  1540. "normal": {
  1541. "texture": "DropDownBoxBg.png"
  1542. }
  1543. },
  1544. {
  1545. "active": {
  1546. "texture": "DropDownBoxBg.png"
  1547. },
  1548. "border": {
  1549. "bottom": 4,
  1550. "left": 2,
  1551. "right": 2,
  1552. "top": 2
  1553. },
  1554. "hover": {
  1555. "texture": "DropDownBoxBg.png"
  1556. },
  1557. "margins": {
  1558. "bottom": 6,
  1559. "left": 6,
  1560. "right": 6,
  1561. "top": 4
  1562. },
  1563. "name": "TooltipFrame",
  1564. "normal": {
  1565. "texture": "DropDownBoxBg.png"
  1566. }
  1567. },
  1568. {
  1569. "border": {
  1570. "bottom": 2,
  1571. "left": 0,
  1572. "right": 0,
  1573. "top": 0
  1574. },
  1575. "height": 14,
  1576. "name": "MenuBarBg",
  1577. "normal": {
  1578. "texture": "MenuBarBackground.png"
  1579. },
  1580. "width": 2
  1581. },
  1582. {
  1583. "fixedHeight": true,
  1584. "height": 1,
  1585. "name": "MenuBarLine",
  1586. "normal": {
  1587. "texture": "MenuBarLineNormal.png"
  1588. },
  1589. "normalOn": {
  1590. "texture": "MenuBarLineActive.png"
  1591. }
  1592. },
  1593. {
  1594. "fixedHeight": true,
  1595. "fixedWidth": true,
  1596. "height": 46,
  1597. "name": "MenuBarBansheeLogo",
  1598. "normal": {
  1599. "texture": "MenuBarLog.png"
  1600. },
  1601. "width": 46
  1602. },
  1603. {
  1604. "active": {
  1605. "textColor": {
  1606. "a": 1.0,
  1607. "b": 0.0,
  1608. "g": 0.0,
  1609. "r": 0.0
  1610. },
  1611. "texture": "MenuBarButtonActive.png"
  1612. },
  1613. "activeOn": {
  1614. "textColor": {
  1615. "a": 1.0,
  1616. "b": 0.0,
  1617. "g": 0.0,
  1618. "r": 0.0
  1619. },
  1620. "texture": "MenuBarButtonActive.png"
  1621. },
  1622. "fixedHeight": true,
  1623. "font": "arial.ttf",
  1624. "height": 14,
  1625. "hover": {
  1626. "textColor": {
  1627. "a": 1.0,
  1628. "b": 0.699999988079071,
  1629. "g": 0.699999988079071,
  1630. "r": 0.699999988079071
  1631. },
  1632. "texture": "MenuBarButtonHover.png"
  1633. },
  1634. "hoverOn": {
  1635. "textColor": {
  1636. "a": 1.0,
  1637. "b": 0.0,
  1638. "g": 0.0,
  1639. "r": 0.0
  1640. },
  1641. "texture": "MenuBarButtonActive.png"
  1642. },
  1643. "focused": {
  1644. "textColor": {
  1645. "a": 1.0,
  1646. "b": 0.699999988079071,
  1647. "g": 0.699999988079071,
  1648. "r": 0.699999988079071
  1649. },
  1650. "texture": "MenuBarButtonNormal.png"
  1651. },
  1652. "focusedOn": {
  1653. "textColor": {
  1654. "a": 1.0,
  1655. "b": 0.0,
  1656. "g": 0.0,
  1657. "r": 0.0
  1658. },
  1659. "texture": "MenuBarButtonActive.png"
  1660. },
  1661. "focusedHover": {
  1662. "textColor": {
  1663. "a": 1.0,
  1664. "b": 0.699999988079071,
  1665. "g": 0.699999988079071,
  1666. "r": 0.699999988079071
  1667. },
  1668. "texture": "MenuBarButtonNormal.png"
  1669. },
  1670. "focusedHoverOn": {
  1671. "textColor": {
  1672. "a": 1.0,
  1673. "b": 0.0,
  1674. "g": 0.0,
  1675. "r": 0.0
  1676. },
  1677. "texture": "MenuBarButtonActive.png"
  1678. },
  1679. "margins": {
  1680. "bottom": 2,
  1681. "left": 2,
  1682. "right": 2,
  1683. "top": 2
  1684. },
  1685. "name": "MenuBarBtn",
  1686. "normal": {
  1687. "textColor": {
  1688. "a": 1.0,
  1689. "b": 0.699999988079071,
  1690. "g": 0.699999988079071,
  1691. "r": 0.699999988079071
  1692. },
  1693. "texture": "MenuBarButtonNormal.png"
  1694. },
  1695. "normalOn": {
  1696. "textColor": {
  1697. "a": 1.0,
  1698. "b": 0.0,
  1699. "g": 0.0,
  1700. "r": 0.0
  1701. },
  1702. "texture": "MenuBarButtonActive.png"
  1703. },
  1704. "width": 4
  1705. },
  1706. {
  1707. "fixedWidth": true,
  1708. "height": 32,
  1709. "name": "ToolBarSeparator",
  1710. "normal": {
  1711. "texture": "ToolBarSeparator.png"
  1712. },
  1713. "width": 3
  1714. },
  1715. {
  1716. "active": {
  1717. "textColor": {
  1718. "a": 1.0,
  1719. "b": 0.0,
  1720. "g": 0.0,
  1721. "r": 0.0
  1722. },
  1723. "texture": "ToolBarButtonActive.png"
  1724. },
  1725. "activeOn": {
  1726. "textColor": {
  1727. "a": 1.0,
  1728. "b": 0.0,
  1729. "g": 0.0,
  1730. "r": 0.0
  1731. },
  1732. "texture": "ToolBarButtonActive.png"
  1733. },
  1734. "fixedHeight": true,
  1735. "fixedWidth": true,
  1736. "height": 32,
  1737. "hover": {
  1738. "textColor": {
  1739. "a": 1.0,
  1740. "b": 0.699999988079071,
  1741. "g": 0.699999988079071,
  1742. "r": 0.699999988079071
  1743. },
  1744. "texture": "ToolBarButtonHover.png"
  1745. },
  1746. "hoverOn": {
  1747. "textColor": {
  1748. "a": 1.0,
  1749. "b": 0.699999988079071,
  1750. "g": 0.699999988079071,
  1751. "r": 0.699999988079071
  1752. },
  1753. "texture": "ToolBarButtonActive.png"
  1754. },
  1755. "name": "ToolBarBtn",
  1756. "normal": {
  1757. "textColor": {
  1758. "a": 1.0,
  1759. "b": 0.699999988079071,
  1760. "g": 0.699999988079071,
  1761. "r": 0.699999988079071
  1762. },
  1763. "texture": "ToolBarButtonNormal.png"
  1764. },
  1765. "normalOn": {
  1766. "textColor": {
  1767. "a": 1.0,
  1768. "b": 0.699999988079071,
  1769. "g": 0.699999988079071,
  1770. "r": 0.699999988079071
  1771. },
  1772. "texture": "ToolBarButtonActive.png"
  1773. },
  1774. "width": 32
  1775. },
  1776. {
  1777. "active": {
  1778. "texture": "Separator.png"
  1779. },
  1780. "height": 2,
  1781. "hover": {
  1782. "texture": "Separator.png"
  1783. },
  1784. "name": "Separator",
  1785. "normal": {
  1786. "texture": "Separator.png"
  1787. },
  1788. "width": 2
  1789. },
  1790. {
  1791. "name": "HeaderBackground",
  1792. "normal": {
  1793. "texture": "HeaderBg.png"
  1794. }
  1795. },
  1796. {
  1797. "border": {
  1798. "bottom": 2,
  1799. "left": 0,
  1800. "right": 0,
  1801. "top": 0
  1802. },
  1803. "fixedHeight": true,
  1804. "font": "arial.ttf",
  1805. "height": 21,
  1806. "minHeight": 4,
  1807. "minWidth": 4,
  1808. "name": "Header",
  1809. "normal": {
  1810. "textColor": {
  1811. "a": 1.0,
  1812. "b": 0.699999988079071,
  1813. "g": 0.699999988079071,
  1814. "r": 0.699999988079071
  1815. },
  1816. "texture": "Header.png"
  1817. },
  1818. "textHorzAlign": 1,
  1819. "textVertAlign": 1
  1820. },
  1821. {
  1822. "active": {
  1823. "textColor": {
  1824. "a": 1.0,
  1825. "b": 0.699999988079071,
  1826. "g": 0.699999988079071,
  1827. "r": 0.699999988079071
  1828. },
  1829. "texture": "ExpandArrowHoverOff.png"
  1830. },
  1831. "activeOn": {
  1832. "textColor": {
  1833. "a": 1.0,
  1834. "b": 0.699999988079071,
  1835. "g": 0.699999988079071,
  1836. "r": 0.699999988079071
  1837. },
  1838. "texture": "ExpandArrowHoverOn.png"
  1839. },
  1840. "border": {
  1841. "bottom": 0,
  1842. "left": 10,
  1843. "right": 0,
  1844. "top": 0
  1845. },
  1846. "contentOffset": {
  1847. "bottom": 0,
  1848. "left": 16,
  1849. "right": 0,
  1850. "top": 0
  1851. },
  1852. "fixedHeight": true,
  1853. "fixedWidth": true,
  1854. "font": "arial.ttf",
  1855. "height": 10,
  1856. "hover": {
  1857. "textColor": {
  1858. "a": 1.0,
  1859. "b": 0.699999988079071,
  1860. "g": 0.699999988079071,
  1861. "r": 0.699999988079071
  1862. },
  1863. "texture": "ExpandArrowHoverOff.png"
  1864. },
  1865. "hoverOn": {
  1866. "textColor": {
  1867. "a": 1.0,
  1868. "b": 0.699999988079071,
  1869. "g": 0.699999988079071,
  1870. "r": 0.699999988079071
  1871. },
  1872. "texture": "ExpandArrowHoverOn.png"
  1873. },
  1874. "name": "Expand",
  1875. "normal": {
  1876. "textColor": {
  1877. "a": 1.0,
  1878. "b": 0.699999988079071,
  1879. "g": 0.699999988079071,
  1880. "r": 0.699999988079071
  1881. },
  1882. "texture": "ExpandArrowNormalOff.png"
  1883. },
  1884. "normalOn": {
  1885. "textColor": {
  1886. "a": 1.0,
  1887. "b": 0.699999988079071,
  1888. "g": 0.699999988079071,
  1889. "r": 0.699999988079071
  1890. },
  1891. "texture": "ExpandArrowNormalOn.png"
  1892. },
  1893. "textVertAlign": 1,
  1894. "width": 11
  1895. },
  1896. {
  1897. "fixedHeight": true,
  1898. "font": "arial.ttf",
  1899. "height": 16,
  1900. "minWidth": 10,
  1901. "name": "TreeViewElementBtn",
  1902. "normal": {
  1903. "textColor": {
  1904. "a": 1.0,
  1905. "b": 0.699999988079071,
  1906. "g": 0.699999988079071,
  1907. "r": 0.699999988079071
  1908. }
  1909. }
  1910. },
  1911. {
  1912. "name": "TreeViewBackground"
  1913. },
  1914. {
  1915. "height": 2,
  1916. "name": "TreeViewSelectionBackground",
  1917. "normal": {
  1918. "texture": "SelectionBg.psd"
  1919. },
  1920. "width": 2
  1921. },
  1922. {
  1923. "height": 2,
  1924. "name": "TreeViewHighlightBackground",
  1925. "normal": {
  1926. "texture": "TreeViewHighlightBackground.psd"
  1927. },
  1928. "width": 2
  1929. },
  1930. {
  1931. "active": {
  1932. "textColor": {
  1933. "a": 1.0,
  1934. "b": 0.699999988079071,
  1935. "g": 0.699999988079071,
  1936. "r": 0.699999988079071
  1937. },
  1938. "texture": "TreeViewEditBox.psd"
  1939. },
  1940. "border": {
  1941. "bottom": 1,
  1942. "left": 1,
  1943. "right": 1,
  1944. "top": 1
  1945. },
  1946. "fixedHeight": true,
  1947. "focused": {
  1948. "textColor": {
  1949. "a": 1.0,
  1950. "b": 0.699999988079071,
  1951. "g": 0.699999988079071,
  1952. "r": 0.699999988079071
  1953. },
  1954. "texture": "TreeViewEditBox.psd"
  1955. },
  1956. "font": "arial.ttf",
  1957. "height": 13,
  1958. "hover": {
  1959. "textColor": {
  1960. "a": 1.0,
  1961. "b": 0.699999988079071,
  1962. "g": 0.699999988079071,
  1963. "r": 0.699999988079071
  1964. },
  1965. "texture": "TreeViewEditBox.psd"
  1966. },
  1967. "margins": {
  1968. "bottom": 1,
  1969. "left": 1,
  1970. "right": 1,
  1971. "top": 1
  1972. },
  1973. "minWidth": 10,
  1974. "name": "TreeViewEditBox",
  1975. "normal": {
  1976. "textColor": {
  1977. "a": 1.0,
  1978. "b": 0.699999988079071,
  1979. "g": 0.699999988079071,
  1980. "r": 0.699999988079071
  1981. },
  1982. "texture": "TreeViewEditBox.psd"
  1983. }
  1984. },
  1985. {
  1986. "border": {
  1987. "bottom": 1,
  1988. "left": 1,
  1989. "right": 1,
  1990. "top": 1
  1991. },
  1992. "name": "TreeViewElementHighlight",
  1993. "normal": {
  1994. "texture": "TreeViewElementHighlight.psd"
  1995. }
  1996. },
  1997. {
  1998. "border": {
  1999. "bottom": 1,
  2000. "left": 1,
  2001. "right": 1,
  2002. "top": 1
  2003. },
  2004. "name": "TreeViewElementSepHighlight",
  2005. "normal": {
  2006. "texture": "TreeViewElementSepHighlight.psd"
  2007. }
  2008. },
  2009. {
  2010. "active": {
  2011. "textColor": {
  2012. "a": 1.0,
  2013. "b": 0.699999988079071,
  2014. "g": 0.699999988079071,
  2015. "r": 0.699999988079071
  2016. },
  2017. "texture": "ObjectDropNormal.png"
  2018. },
  2019. "activeOn": {
  2020. "textColor": {
  2021. "a": 1.0,
  2022. "b": 0.699999988079071,
  2023. "g": 0.699999988079071,
  2024. "r": 0.699999988079071
  2025. },
  2026. "texture": "ObjectDropNormalOn.png"
  2027. },
  2028. "border": {
  2029. "bottom": 4,
  2030. "left": 2,
  2031. "right": 0,
  2032. "top": 2
  2033. },
  2034. "contentOffset": {
  2035. "bottom": 0,
  2036. "left": 3,
  2037. "right": 1,
  2038. "top": 0
  2039. },
  2040. "fixedHeight": true,
  2041. "font": "arial.ttf",
  2042. "height": 21,
  2043. "hover": {
  2044. "textColor": {
  2045. "a": 1.0,
  2046. "b": 0.699999988079071,
  2047. "g": 0.699999988079071,
  2048. "r": 0.699999988079071
  2049. },
  2050. "texture": "ObjectDropNormal.png"
  2051. },
  2052. "hoverOn": {
  2053. "textColor": {
  2054. "a": 1.0,
  2055. "b": 0.699999988079071,
  2056. "g": 0.699999988079071,
  2057. "r": 0.699999988079071
  2058. },
  2059. "texture": "ObjectDropNormalOn.png"
  2060. },
  2061. "margins": {
  2062. "bottom": 2,
  2063. "left": 0,
  2064. "right": 0,
  2065. "top": 0
  2066. },
  2067. "minWidth": 20,
  2068. "name": "DropButton",
  2069. "normal": {
  2070. "textColor": {
  2071. "a": 1.0,
  2072. "b": 0.699999988079071,
  2073. "g": 0.699999988079071,
  2074. "r": 0.699999988079071
  2075. },
  2076. "texture": "ObjectDropNormal.png"
  2077. },
  2078. "normalOn": {
  2079. "textColor": {
  2080. "a": 1.0,
  2081. "b": 0.699999988079071,
  2082. "g": 0.699999988079071,
  2083. "r": 0.699999988079071
  2084. },
  2085. "texture": "ObjectDropNormalOn.png"
  2086. },
  2087. "textHorzAlign": 1,
  2088. "textVertAlign": 1
  2089. },
  2090. {
  2091. "active": {
  2092. "texture": "ObjectDropClearActive.png"
  2093. },
  2094. "fixedHeight": true,
  2095. "fixedWidth": true,
  2096. "height": 21,
  2097. "hover": {
  2098. "texture": "ObjectDropClearHover.png"
  2099. },
  2100. "margins": {
  2101. "bottom": 2,
  2102. "left": 0,
  2103. "right": 0,
  2104. "top": 0
  2105. },
  2106. "name": "ObjectClearButton",
  2107. "normal": {
  2108. "texture": "ObjectDropClearNormal.png"
  2109. },
  2110. "width": 16
  2111. },
  2112. {
  2113. "fixedHeight": true,
  2114. "height": 21,
  2115. "minWidth": 30,
  2116. "name": "GUIObjectField",
  2117. "subStyles": [
  2118. {
  2119. "name": "DropButton",
  2120. "style": "DropButton"
  2121. },
  2122. {
  2123. "name": "EditorFieldLabel",
  2124. "style": "EditorFieldLabel"
  2125. },
  2126. {
  2127. "name": "ObjectClearButton",
  2128. "style": "ObjectClearButton"
  2129. }
  2130. ]
  2131. },
  2132. {
  2133. "minHeight": 15,
  2134. "minWidth": 15,
  2135. "name": "GUITextureField",
  2136. "subStyles": [
  2137. {
  2138. "name": "TextureClearButton",
  2139. "style": "TextureClearButton"
  2140. },
  2141. {
  2142. "name": "TextureDrop",
  2143. "style": "TextureDrop"
  2144. },
  2145. {
  2146. "name": "TextureFieldLabel",
  2147. "style": "EditorFieldLabel"
  2148. }
  2149. ]
  2150. },
  2151. {
  2152. "active": {
  2153. "textColor": {
  2154. "a": 1.0,
  2155. "b": 0.372549027204514,
  2156. "g": 0.372549027204514,
  2157. "r": 0.372549027204514
  2158. },
  2159. "texture": "TextureDrop.png"
  2160. },
  2161. "activeOn": {
  2162. "textColor": {
  2163. "a": 1.0,
  2164. "b": 0.372549027204514,
  2165. "g": 0.372549027204514,
  2166. "r": 0.372549027204514
  2167. },
  2168. "texture": "TextureDropHover.png"
  2169. },
  2170. "border": {
  2171. "bottom": 4,
  2172. "left": 2,
  2173. "right": 2,
  2174. "top": 2
  2175. },
  2176. "contentOffset": {
  2177. "bottom": 4,
  2178. "left": 4,
  2179. "right": 4,
  2180. "top": 4
  2181. },
  2182. "fixedHeight": true,
  2183. "fixedWidth": true,
  2184. "font": "arial.ttf",
  2185. "height": 84,
  2186. "hover": {
  2187. "textColor": {
  2188. "a": 1.0,
  2189. "b": 0.372549027204514,
  2190. "g": 0.372549027204514,
  2191. "r": 0.372549027204514
  2192. },
  2193. "texture": "TextureDrop.png"
  2194. },
  2195. "hoverOn": {
  2196. "textColor": {
  2197. "a": 1.0,
  2198. "b": 0.372549027204514,
  2199. "g": 0.372549027204514,
  2200. "r": 0.372549027204514
  2201. },
  2202. "texture": "TextureDropHover.png"
  2203. },
  2204. "name": "TextureDrop",
  2205. "normal": {
  2206. "textColor": {
  2207. "a": 1.0,
  2208. "b": 0.372549027204514,
  2209. "g": 0.372549027204514,
  2210. "r": 0.372549027204514
  2211. },
  2212. "texture": "TextureDrop.png"
  2213. },
  2214. "normalOn": {
  2215. "textColor": {
  2216. "a": 1.0,
  2217. "b": 0.372549027204514,
  2218. "g": 0.372549027204514,
  2219. "r": 0.372549027204514
  2220. },
  2221. "texture": "TextureDropHover.png"
  2222. },
  2223. "textHorzAlign": 1,
  2224. "textVertAlign": 1,
  2225. "width": 82
  2226. },
  2227. {
  2228. "active": {
  2229. "texture": "XBtnActive.png"
  2230. },
  2231. "fixedHeight": true,
  2232. "fixedWidth": true,
  2233. "height": 10,
  2234. "hover": {
  2235. "texture": "XBtnHover.png"
  2236. },
  2237. "name": "TextureClearButton",
  2238. "normal": {
  2239. "texture": "XBtnNormal.png"
  2240. },
  2241. "width": 10
  2242. },
  2243. {
  2244. "fixedHeight": true,
  2245. "font": "arial.ttf",
  2246. "height": 14,
  2247. "minWidth": 10,
  2248. "name": "EditorFieldLabel",
  2249. "normal": {
  2250. "textColor": {
  2251. "a": 1.0,
  2252. "b": 0.699999988079071,
  2253. "g": 0.699999988079071,
  2254. "r": 0.699999988079071
  2255. }
  2256. }
  2257. },
  2258. {
  2259. "fixedHeight": true,
  2260. "height": 21,
  2261. "minWidth": 30,
  2262. "name": "GUIIntField",
  2263. "subStyles": [
  2264. {
  2265. "name": "EditorFieldInput",
  2266. "style": "InputBox"
  2267. },
  2268. {
  2269. "name": "EditorFieldLabel",
  2270. "style": "EditorFieldLabel"
  2271. }
  2272. ]
  2273. },
  2274. {
  2275. "fixedHeight": true,
  2276. "height": 21,
  2277. "minWidth": 30,
  2278. "name": "GUIFloatField",
  2279. "subStyles": [
  2280. {
  2281. "name": "EditorFieldInput",
  2282. "style": "InputBox"
  2283. },
  2284. {
  2285. "name": "EditorFieldLabel",
  2286. "style": "EditorFieldLabel"
  2287. }
  2288. ]
  2289. },
  2290. {
  2291. "fixedHeight": true,
  2292. "height": 21,
  2293. "minWidth": 30,
  2294. "name": "GUITextField",
  2295. "subStyles": [
  2296. {
  2297. "name": "EditorFieldInput",
  2298. "style": "InputBox"
  2299. },
  2300. {
  2301. "name": "EditorFieldLabel",
  2302. "style": "EditorFieldLabel"
  2303. }
  2304. ]
  2305. },
  2306. {
  2307. "fixedHeight": true,
  2308. "height": 21,
  2309. "minWidth": 30,
  2310. "name": "GUIColorField",
  2311. "subStyles": [
  2312. {
  2313. "name": "EditorFieldColor",
  2314. "style": "Color"
  2315. },
  2316. {
  2317. "name": "EditorFieldLabel",
  2318. "style": "EditorFieldLabel"
  2319. }
  2320. ]
  2321. },
  2322. {
  2323. "fixedHeight": true,
  2324. "height": 15,
  2325. "minWidth": 30,
  2326. "name": "GUIToggleField",
  2327. "subStyles": [
  2328. {
  2329. "name": "EditorFieldLabel",
  2330. "style": "EditorFieldLabel"
  2331. },
  2332. {
  2333. "name": "EditorFieldToggleInput",
  2334. "style": "Toggle"
  2335. }
  2336. ]
  2337. },
  2338. {
  2339. "fixedHeight": true,
  2340. "height": 35,
  2341. "minWidth": 30,
  2342. "name": "GUIVector2Field",
  2343. "subStyles": [
  2344. {
  2345. "name": "EditorFieldLabel",
  2346. "style": "EditorFieldLabel"
  2347. },
  2348. {
  2349. "name": "EditorFloatField",
  2350. "style": "GUIFloatField"
  2351. }
  2352. ]
  2353. },
  2354. {
  2355. "fixedHeight": true,
  2356. "height": 35,
  2357. "minWidth": 30,
  2358. "name": "GUIVector3Field",
  2359. "subStyles": [
  2360. {
  2361. "name": "EditorFieldLabel",
  2362. "style": "EditorFieldLabel"
  2363. },
  2364. {
  2365. "name": "EditorFloatField",
  2366. "style": "GUIFloatField"
  2367. }
  2368. ]
  2369. },
  2370. {
  2371. "fixedHeight": true,
  2372. "height": 35,
  2373. "minWidth": 30,
  2374. "name": "GUIVector4Field",
  2375. "subStyles": [
  2376. {
  2377. "name": "EditorFieldLabel",
  2378. "style": "EditorFieldLabel"
  2379. },
  2380. {
  2381. "name": "EditorFloatField",
  2382. "style": "GUIFloatField"
  2383. }
  2384. ]
  2385. },
  2386. {
  2387. "fixedHeight": true,
  2388. "height": 21,
  2389. "minWidth": 30,
  2390. "name": "GUIListBoxField",
  2391. "subStyles": [
  2392. {
  2393. "name": "EditorFieldLabel",
  2394. "style": "EditorFieldLabel"
  2395. },
  2396. {
  2397. "name": "EditorFieldListBox",
  2398. "style": "ListBox"
  2399. }
  2400. ]
  2401. },
  2402. {
  2403. "fixedHeight": true,
  2404. "height": 21,
  2405. "minWidth": 30,
  2406. "name": "GUISliderField",
  2407. "subStyles": [
  2408. {
  2409. "name": "EditorFieldInput",
  2410. "style": "InputBox"
  2411. },
  2412. {
  2413. "name": "EditorFieldLabel",
  2414. "style": "EditorFieldLabel"
  2415. },
  2416. {
  2417. "name": "EditorSliderInput",
  2418. "style": "SliderHorz"
  2419. }
  2420. ]
  2421. },
  2422. {
  2423. "active": {
  2424. "textColor": {
  2425. "a": 1.0,
  2426. "b": 0.699999988079071,
  2427. "g": 0.699999988079071,
  2428. "r": 0.699999988079071
  2429. },
  2430. "texture": "FoldoutHoverOn.png"
  2431. },
  2432. "activeOn": {
  2433. "textColor": {
  2434. "a": 1.0,
  2435. "b": 0.699999988079071,
  2436. "g": 0.699999988079071,
  2437. "r": 0.699999988079071
  2438. },
  2439. "texture": "FoldoutHoverOn.png"
  2440. },
  2441. "border": {
  2442. "bottom": 4,
  2443. "left": 15,
  2444. "right": 2,
  2445. "top": 2
  2446. },
  2447. "contentOffset": {
  2448. "bottom": 0,
  2449. "left": 16,
  2450. "right": 0,
  2451. "top": 0
  2452. },
  2453. "fixedHeight": true,
  2454. "font": "arial.ttf",
  2455. "height": 21,
  2456. "hover": {
  2457. "textColor": {
  2458. "a": 1.0,
  2459. "b": 0.699999988079071,
  2460. "g": 0.699999988079071,
  2461. "r": 0.699999988079071
  2462. },
  2463. "texture": "FoldoutHoverOff.png"
  2464. },
  2465. "hoverOn": {
  2466. "textColor": {
  2467. "a": 1.0,
  2468. "b": 0.699999988079071,
  2469. "g": 0.699999988079071,
  2470. "r": 0.699999988079071
  2471. },
  2472. "texture": "FoldoutHoverOn.png"
  2473. },
  2474. "minWidth": 17,
  2475. "name": "Foldout",
  2476. "normal": {
  2477. "textColor": {
  2478. "a": 1.0,
  2479. "b": 0.699999988079071,
  2480. "g": 0.699999988079071,
  2481. "r": 0.699999988079071
  2482. },
  2483. "texture": "FoldoutNormalOff.png"
  2484. },
  2485. "normalOn": {
  2486. "textColor": {
  2487. "a": 1.0,
  2488. "b": 0.699999988079071,
  2489. "g": 0.699999988079071,
  2490. "r": 0.699999988079071
  2491. },
  2492. "texture": "FoldoutNormalOn.png"
  2493. },
  2494. "textVertAlign": 1
  2495. },
  2496. {
  2497. "border": {
  2498. "bottom": 0,
  2499. "left": 8,
  2500. "right": 8,
  2501. "top": 0
  2502. },
  2503. "fixedHeight": true,
  2504. "height": 17,
  2505. "name": "ProgressBarBackground",
  2506. "normal": {
  2507. "texture": "ProgressBarBg.png"
  2508. }
  2509. },
  2510. {
  2511. "border": {
  2512. "bottom": 0,
  2513. "left": 9,
  2514. "right": 10,
  2515. "top": 0
  2516. },
  2517. "fixedHeight": true,
  2518. "height": 16,
  2519. "name": "ProgressBarFill",
  2520. "normal": {
  2521. "texture": "ProgressBarFill.png"
  2522. }
  2523. },
  2524. {
  2525. "fixedHeight": true,
  2526. "height": 17,
  2527. "minWidth": 100,
  2528. "name": "ProgressBar",
  2529. "subStyles": [
  2530. {
  2531. "name": "ProgressBarBackground",
  2532. "style": "ProgressBarBackground"
  2533. },
  2534. {
  2535. "name": "ProgressBarFill",
  2536. "style": "ProgressBarFill"
  2537. }
  2538. ]
  2539. },
  2540. {
  2541. "active": {
  2542. "texture": "SliderHandleActive.png"
  2543. },
  2544. "fixedHeight": true,
  2545. "fixedWidth": true,
  2546. "height": 13,
  2547. "hover": {
  2548. "texture": "SliderHandleHover.png"
  2549. },
  2550. "name": "SliderHandle",
  2551. "normal": {
  2552. "texture": "SliderHandleNormal.png"
  2553. },
  2554. "width": 12
  2555. },
  2556. {
  2557. "border": {
  2558. "bottom": 0,
  2559. "left": 4,
  2560. "right": 4,
  2561. "top": 0
  2562. },
  2563. "fixedHeight": true,
  2564. "height": 10,
  2565. "name": "SliderHorzBg",
  2566. "normal": {
  2567. "texture": "SliderHBackground.png"
  2568. },
  2569. "focused": {
  2570. "texture": "SliderHBackgroundFocused.png"
  2571. }
  2572. },
  2573. {
  2574. "border": {
  2575. "bottom": 0,
  2576. "left": 6,
  2577. "right": 4,
  2578. "top": 0
  2579. },
  2580. "fixedHeight": true,
  2581. "height": 10,
  2582. "name": "SliderHorzFill",
  2583. "normal": {
  2584. "texture": "SliderHFill.png"
  2585. }
  2586. },
  2587. {
  2588. "fixedHeight": true,
  2589. "height": 13,
  2590. "minWidth": 10,
  2591. "name": "SliderHorz",
  2592. "subStyles": [
  2593. {
  2594. "name": "SliderBackground",
  2595. "style": "SliderHorzBg"
  2596. },
  2597. {
  2598. "name": "SliderFill",
  2599. "style": "SliderHorzFill"
  2600. },
  2601. {
  2602. "name": "SliderHandle",
  2603. "style": "SliderHandle"
  2604. }
  2605. ],
  2606. "width": 150
  2607. },
  2608. {
  2609. "border": {
  2610. "bottom": 4,
  2611. "left": 0,
  2612. "right": 0,
  2613. "top": 4
  2614. },
  2615. "fixedWidth": true,
  2616. "name": "SliderVertBg",
  2617. "normal": {
  2618. "texture": "SliderVBackground.png"
  2619. },
  2620. "focused": {
  2621. "texture": "SliderVBackgroundFocused.png"
  2622. },
  2623. "width": 10
  2624. },
  2625. {
  2626. "border": {
  2627. "bottom": 4,
  2628. "left": 0,
  2629. "right": 0,
  2630. "top": 6
  2631. },
  2632. "fixedWidth": true,
  2633. "name": "SliderVertFill",
  2634. "normal": {
  2635. "texture": "SliderVFill.png"
  2636. },
  2637. "width": 10
  2638. },
  2639. {
  2640. "fixedWidth": true,
  2641. "height": 150,
  2642. "minHeight": 10,
  2643. "name": "SliderVert",
  2644. "subStyles": [
  2645. {
  2646. "name": "SliderBackground",
  2647. "style": "SliderVertBg"
  2648. },
  2649. {
  2650. "name": "SliderFill",
  2651. "style": "SliderVertFill"
  2652. },
  2653. {
  2654. "name": "SliderHandle",
  2655. "style": "SliderHandle"
  2656. }
  2657. ],
  2658. "width": 13
  2659. },
  2660. {
  2661. "active": {
  2662. "texture": "ColorPickerSliderHorzHandle.psd"
  2663. },
  2664. "fixedHeight": true,
  2665. "fixedWidth": true,
  2666. "height": 20,
  2667. "hover": {
  2668. "texture": "ColorPickerSliderHorzHandle.psd"
  2669. },
  2670. "name": "ColorSliderHorzHandle",
  2671. "normal": {
  2672. "texture": "ColorPickerSliderHorzHandle.psd"
  2673. },
  2674. "width": 7
  2675. },
  2676. {
  2677. "fixedHeight": true,
  2678. "height": 32,
  2679. "minWidth": 20,
  2680. "name": "ColorSliderHorz",
  2681. "subStyles": [
  2682. {
  2683. "name": "SliderHandle",
  2684. "style": "ColorSliderHorzHandle"
  2685. }
  2686. ]
  2687. },
  2688. {
  2689. "active": {
  2690. "texture": "ColorPickerSliderVertHandle.psd"
  2691. },
  2692. "fixedHeight": true,
  2693. "fixedWidth": true,
  2694. "height": 7,
  2695. "hover": {
  2696. "texture": "ColorPickerSliderVertHandle.psd"
  2697. },
  2698. "name": "ColorSliderVertHandle",
  2699. "normal": {
  2700. "texture": "ColorPickerSliderVertHandle.psd"
  2701. },
  2702. "width": 45
  2703. },
  2704. {
  2705. "fixedWidth": true,
  2706. "minHeight": 20,
  2707. "name": "ColorSliderVert",
  2708. "subStyles": [
  2709. {
  2710. "name": "SliderHandle",
  2711. "style": "ColorSliderVertHandle"
  2712. }
  2713. ],
  2714. "width": 30
  2715. },
  2716. {
  2717. "active": {
  2718. "texture": "ColorPicker2DHandle.psd"
  2719. },
  2720. "fixedHeight": true,
  2721. "fixedWidth": true,
  2722. "height": 7,
  2723. "hover": {
  2724. "texture": "ColorPicker2DHandle.psd"
  2725. },
  2726. "name": "ColorSlider2DHandle",
  2727. "normal": {
  2728. "texture": "ColorPicker2DHandle.psd"
  2729. },
  2730. "width": 7
  2731. },
  2732. {
  2733. "border": {
  2734. "bottom": 0,
  2735. "left": 0,
  2736. "right": 0,
  2737. "top": 2
  2738. },
  2739. "height": 16,
  2740. "name": "GUIStatusBarBg",
  2741. "normal": {
  2742. "texture": "StatusBarBackground.png"
  2743. }
  2744. },
  2745. {
  2746. "fixedHeight": true,
  2747. "font": "arial.ttf",
  2748. "height": 16,
  2749. "minWidth": 10,
  2750. "name": "GUIStatusBarMessage",
  2751. "textVertAlign": 1
  2752. },
  2753. {
  2754. "height": 16,
  2755. "name": "GUIStatusBar",
  2756. "subStyles": [
  2757. {
  2758. "name": "GUIStatusBarBg",
  2759. "style": "GUIStatusBarBg"
  2760. },
  2761. {
  2762. "name": "GUIStatusBarMessage",
  2763. "style": "GUIStatusBarMessage"
  2764. }
  2765. ]
  2766. },
  2767. {
  2768. "fixedHeight": true,
  2769. "font": "arial.ttf",
  2770. "height": 11,
  2771. "minWidth": 10,
  2772. "name": "LabelCentered",
  2773. "normal": {
  2774. "textColor": {
  2775. "a": 1.0,
  2776. "b": 0.699999988079071,
  2777. "g": 0.699999988079071,
  2778. "r": 0.699999988079071
  2779. }
  2780. },
  2781. "textHorzAlign": 1
  2782. },
  2783. {
  2784. "fixedHeight": true,
  2785. "font": "arial.ttf",
  2786. "height": 11,
  2787. "minWidth": 10,
  2788. "name": "RightAlignedLabel",
  2789. "normal": {
  2790. "textColor": {
  2791. "a": 1.0,
  2792. "b": 0.699999988079071,
  2793. "g": 0.699999988079071,
  2794. "r": 0.699999988079071
  2795. }
  2796. },
  2797. "textHorzAlign": 2
  2798. },
  2799. {
  2800. "fixedHeight": true,
  2801. "font": "arial.ttf",
  2802. "height": 11,
  2803. "minWidth": 10,
  2804. "name": "MultiLineLabel",
  2805. "normal": {
  2806. "textColor": {
  2807. "a": 1.0,
  2808. "b": 0.699999988079071,
  2809. "g": 0.699999988079071,
  2810. "r": 0.699999988079071
  2811. }
  2812. },
  2813. "wordWrap": true
  2814. },
  2815. {
  2816. "fixedHeight": true,
  2817. "font": "arial.ttf",
  2818. "height": 11,
  2819. "minWidth": 10,
  2820. "name": "MultiLineLabelCentered",
  2821. "normal": {
  2822. "textColor": {
  2823. "a": 1.0,
  2824. "b": 0.699999988079071,
  2825. "g": 0.699999988079071,
  2826. "r": 0.699999988079071
  2827. }
  2828. },
  2829. "textHorzAlign": 1,
  2830. "wordWrap": true
  2831. },
  2832. {
  2833. "fixedHeight": true,
  2834. "font": "arialAA.ttf",
  2835. "fontSize": 16,
  2836. "height": 20,
  2837. "minWidth": 10,
  2838. "name": "TitleLabel",
  2839. "normal": {
  2840. "textColor": {
  2841. "a": 1.0,
  2842. "b": 0.699999988079071,
  2843. "g": 0.699999988079071,
  2844. "r": 0.699999988079071
  2845. }
  2846. },
  2847. "textHorzAlign": 1,
  2848. "wordWrap": true
  2849. },
  2850. {
  2851. "border": {
  2852. "bottom": 1,
  2853. "left": 1,
  2854. "right": 1,
  2855. "top": 1
  2856. },
  2857. "name": "SelectionArea",
  2858. "normal": {
  2859. "texture": "SelectionHighlight.png"
  2860. }
  2861. },
  2862. {
  2863. "activeOn": {
  2864. "texture": "SelectionBg.psd"
  2865. },
  2866. "fixedHeight": true,
  2867. "font": "arial.ttf",
  2868. "height": 11,
  2869. "hoverOn": {
  2870. "texture": "SelectionBg.psd"
  2871. },
  2872. "minWidth": 10,
  2873. "name": "SelectableLabel",
  2874. "normal": {
  2875. "textColor": {
  2876. "a": 1.0,
  2877. "b": 0.699999988079071,
  2878. "g": 0.699999988079071,
  2879. "r": 0.699999988079071
  2880. }
  2881. },
  2882. "normalOn": {
  2883. "texture": "SelectionBg.psd"
  2884. }
  2885. },
  2886. {
  2887. "border": {
  2888. "bottom": 4,
  2889. "left": 2,
  2890. "right": 2,
  2891. "top": 2
  2892. },
  2893. "minHeight": 6,
  2894. "minWidth": 4,
  2895. "name": "ScrollAreaBg",
  2896. "normal": {
  2897. "texture": "ScrollAreaBg.png"
  2898. }
  2899. },
  2900. {
  2901. "border": {
  2902. "bottom": 2,
  2903. "left": 0,
  2904. "right": 0,
  2905. "top": 0
  2906. },
  2907. "minHeight": 4,
  2908. "name": "InspectorTitleBg",
  2909. "normal": {
  2910. "texture": "InspectorTitleBg.png"
  2911. }
  2912. },
  2913. {
  2914. "border": {
  2915. "bottom": 4,
  2916. "left": 2,
  2917. "right": 2,
  2918. "top": 2
  2919. },
  2920. "minHeight": 6,
  2921. "minWidth": 4,
  2922. "name": "InspectorContentBg",
  2923. "normal": {
  2924. "texture": "InspectorContentBg.png"
  2925. }
  2926. },
  2927. {
  2928. "border": {
  2929. "bottom": 4,
  2930. "left": 2,
  2931. "right": 2,
  2932. "top": 2
  2933. },
  2934. "minHeight": 6,
  2935. "minWidth": 4,
  2936. "name": "InspectorContentBgAlternate",
  2937. "normal": {
  2938. "texture": "InspectorContentBgAlternate.png"
  2939. }
  2940. },
  2941. {
  2942. "border": {
  2943. "bottom": 2,
  2944. "left": 2,
  2945. "right": 0,
  2946. "top": 5
  2947. },
  2948. "minHeight": 7,
  2949. "minWidth": 4,
  2950. "name": "LibraryEntryFirstBg",
  2951. "normal": {
  2952. "texture": "LibraryEntryFirstBg.png"
  2953. }
  2954. },
  2955. {
  2956. "border": {
  2957. "bottom": 2,
  2958. "left": 0,
  2959. "right": 0,
  2960. "top": 5
  2961. },
  2962. "minHeight": 7,
  2963. "minWidth": 4,
  2964. "name": "LibraryEntryBg",
  2965. "normal": {
  2966. "texture": "LibraryEntryBg.png"
  2967. }
  2968. },
  2969. {
  2970. "border": {
  2971. "bottom": 2,
  2972. "left": 0,
  2973. "right": 2,
  2974. "top": 5
  2975. },
  2976. "minHeight": 7,
  2977. "name": "LibraryEntryLastBg",
  2978. "normal": {
  2979. "texture": "LibraryEntryLastBg.png"
  2980. }
  2981. },
  2982. {
  2983. "border": {
  2984. "bottom": 0,
  2985. "left": 2,
  2986. "right": 4,
  2987. "top": 4
  2988. },
  2989. "minHeight": 5,
  2990. "minWidth": 6,
  2991. "name": "LibraryEntryVertFirstBg",
  2992. "normal": {
  2993. "texture": "LibraryEntryVertFirstBg.png"
  2994. }
  2995. },
  2996. {
  2997. "border": {
  2998. "bottom": 0,
  2999. "left": 2,
  3000. "right": 4,
  3001. "top": 0
  3002. },
  3003. "minHeight": 4,
  3004. "minWidth": 6,
  3005. "name": "LibraryEntryVertBg",
  3006. "normal": {
  3007. "texture": "LibraryEntryVertBg.png"
  3008. }
  3009. },
  3010. {
  3011. "border": {
  3012. "bottom": 2,
  3013. "left": 2,
  3014. "right": 4,
  3015. "top": 0
  3016. },
  3017. "minHeight": 4,
  3018. "minWidth": 6,
  3019. "name": "LibraryEntryVertLastBg",
  3020. "normal": {
  3021. "texture": "LibraryEntryVertLastBg.png"
  3022. }
  3023. },
  3024. {
  3025. "name": "Canvas"
  3026. }
  3027. ]