GuiProfiles.tscript 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. //-----------------------------------------------------------------------------
  2. // Verve
  3. // Copyright (C) - Violent Tulip
  4. //-----------------------------------------------------------------------------
  5. singleton GuiControlProfile( VEditorDefaultProfile )
  6. {
  7. opaque = true;
  8. fillColor = "70 70 70";
  9. fillColorHL = "90 90 90";
  10. fillColorNA = "70 70 70";
  11. border = 1;
  12. borderColor = "120 120 120";
  13. borderColorHL = "100 100 100";
  14. borderColorNA = "240 240 240";
  15. fontType = "Arial";
  16. fontSize = 12;
  17. fontCharset = ANSI;
  18. fontColor = "255 255 255";
  19. fontColorHL = "255 255 255";
  20. fontColorNA = "255 255 255";
  21. fontColorSEL = "255 255 255";
  22. };
  23. singleton GuiControlProfile( VEditorTestProfile )
  24. {
  25. opaque = true;
  26. fillColor = "255 255 0";
  27. fillColorHL = "255 255 0";
  28. fillColorNA = "255 255 0";
  29. };
  30. singleton GuiControlProfile( VEditorNoFillProfile : VEditorDefaultProfile )
  31. {
  32. opaque = false;
  33. };
  34. singleton GuiControlProfile( VEditorNoBorderProfile : VEditorDefaultProfile )
  35. {
  36. border = false;
  37. };
  38. singleton GuiControlProfile( VEditorTransparentProfile : VEditorDefaultProfile )
  39. {
  40. opaque = false;
  41. border = false;
  42. };
  43. //-----------------------------------------------------------------------------
  44. singleton GuiControlProfile( VEditorTextProfile : VEditorDefaultProfile )
  45. {
  46. border = false;
  47. opaque = false;
  48. fontType = "Arial Bold";
  49. };
  50. singleton GuiControlProfile( VEditorTextEditProfile : VEditorDefaultProfile )
  51. {
  52. fillColor = "70 70 70";
  53. fillColorHL = "90 90 90";
  54. fillColorSEL = "0 0 0";
  55. fillColorNA = "70 70 70";
  56. fontColor = "255 255 255";
  57. fontColorHL = "0 0 0";
  58. fontColorSEL = "128 128 128";
  59. fontColorNA = "128 128 128";
  60. textOffset = "4 2";
  61. autoSizeWidth = false;
  62. autoSizeHeight = false;
  63. justify = "left";
  64. tab = true;
  65. canKeyFocus = true;
  66. };
  67. singleton GuiControlProfile( VEditorPopupMenuProfile : GuiPopUpMenuProfile )
  68. {
  69. FillColorHL = "90 90 90";
  70. FillColorSEL = "0 0 0";
  71. FontColorHL = "255 255 255";
  72. };
  73. singleton GuiControlProfile ( VEditorBitmapButtonProfile : VEditorDefaultProfile )
  74. {
  75. justify = "center";
  76. hasBitmapArray = true;
  77. bitmapAsset = "ToolsModule:button_image";
  78. };
  79. //-----------------------------------------------------------------------------
  80. singleton GuiControlProfile( VEditorGroupHeaderProfile : VEditorDefaultProfile )
  81. {
  82. CanKeyFocus = true;
  83. TextOffset = "23 0";
  84. fontColor = "70 70 70";
  85. };
  86. singleton GuiControlProfile( VEditorGroupHeaderErrorProfile : VEditorGroupHeaderProfile )
  87. {
  88. fontColor = "255 70 70";
  89. };
  90. singleton GuiControlProfile( VEditorGroupTrackProfile : VEditorTransparentProfile )
  91. {
  92. CanKeyFocus = true;
  93. };
  94. singleton GuiControlProfile( VEditorTrackProfile : VEditorDefaultProfile )
  95. {
  96. CanKeyFocus = true;
  97. TextOffset = "33 0";
  98. opaque = true;
  99. fillColor = "255 255 255 15";
  100. fillColorHL = "151 166 191 60";
  101. borderColor = "100 100 100";
  102. };
  103. singleton GuiControlProfile( VEditorTrackErrorProfile : VEditorTrackProfile )
  104. {
  105. fontColor = "255 70 70";
  106. };
  107. singleton GuiControlProfile( VEditorEventProfile : VEditorDefaultProfile )
  108. {
  109. CanKeyFocus = true;
  110. Justify = "left";
  111. TextOffset = "6 1";
  112. fillColor = "81 81 81";
  113. fillColorHL = "102 102 102";
  114. borderColor = "255 255 255";
  115. borderColorHL = "255 255 255";
  116. borderColorNA = "100 100 100";
  117. };
  118. singleton GuiControlProfile( VEditorTimeLineProfile : VEditorDefaultProfile )
  119. {
  120. CanKeyFocus = true;
  121. opaque = false;
  122. fillColorHL = "255 255 255 15";
  123. border = false;
  124. borderColor = "100 100 100";
  125. };
  126. singleton GuiControlProfile( VEditorPropertyProfile : VEditorDefaultProfile )
  127. {
  128. fillColor = "102 102 102";
  129. };
  130. //-----------------------------------------------------------------------------
  131. singleton GuiControlProfile ( VEditorScrollProfile : VEditorDefaultProfile )
  132. {
  133. opaque = false;
  134. border = false;
  135. hasBitmapArray = true;
  136. bitmapAsset = "ToolsModule:Images_ScrollBar_image";
  137. };
  138. singleton GuiControlProfile ( VEditorCheckBoxProfile : GuiCheckBoxProfile )
  139. {
  140. // Void.
  141. };
  142. //-----------------------------------------------------------------------------
  143. singleton GuiControlProfile( VEditorPropertyRolloutProfile : GuiRolloutProfile )
  144. {
  145. border = 0;
  146. hasBitmapArray = true;
  147. bitmapAsset = "ToolsModule:PropertyRollout_image";
  148. fontType = "Arial";
  149. fontSize = 12;
  150. fontCharset = ANSI;
  151. fontColor = "255 255 255";
  152. fontColorHL = "255 255 255";
  153. fontColorNA = "255 255 255";
  154. fontColorSEL = "255 255 255";
  155. };
  156. singleton GuiControlProfile( VEditorPropertyLabelProfile : VEditorTextProfile )
  157. {
  158. border = "1";
  159. justify = "center";
  160. };
  161. //-----------------------------------------------------------------------------
  162. singleton GuiControlProfile( VEditorPreferenceLabelProfile : GuiTextProfile )
  163. {
  164. opaque = true;
  165. fillColor = "242 241 240";
  166. fillColorHL = "242 241 240";
  167. fillColorNA = "242 241 240";
  168. };