Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2494 lines
65 KiB

  1. ;------------------------------------------
  2. ; file: metallic\default.ini
  3. ;------------------------------------------
  4. ;--------- Globals -------------------------
  5. [globals]
  6. ; global edge colors (redefined in various parts)
  7. EdgeLightColor = 241 239 226
  8. EdgeHighLightColor = 255 255 255
  9. EdgeShadowColor = 172 168 153
  10. EdgeDkShadowColor = 113 111 100
  11. EdgeFillColor = 236 233 216
  12. ;--------- system metrics -------------------------------
  13. [SysMetrics]
  14. ;The system metric colors also effect non-themed controls.
  15. ScrollbarWidth = ##SBWidth
  16. ScrollbarHeight = ##SBHeight
  17. Window = 255 255 255
  18. MenuBar = 224 226 235
  19. Menu = 255 255 255
  20. Background = 88 87 104
  21. Btnface = 224 223 227
  22. Highlight = 178 180 191
  23. ActiveCaption = 192 192 192
  24. CaptionText = 14 16 16
  25. InactiveCaption = 255 255 255
  26. InactiveCaptionText = 162 161 161
  27. GradientActiveCaption = 200 200 200
  28. GradientInactiveCaption = 238 239 247
  29. HighlightText = 0 0 0
  30. MenuHilight = 187 183 199
  31. Hottracking = 100 139 203
  32. BtnShadow = 157 157 161
  33. GrayText = 172 168 153
  34. BtnHighlight = 255 255 255
  35. DkShadow3d = 113 111 100
  36. Light3d = 241 239 226
  37. ;---- don't remove these fonts (must specify to be localizable) ----
  38. CaptionFont = ##CaptionFont
  39. CaptionBarHeight = ##CaptionBarHeight
  40. SmallCaptionFont = ##SmallCaptionFont
  41. SMCaptionBarHeight = ##SMCaptionBarHeight
  42. SMCaptionBarWidth = ##SMCaptionBarWidth
  43. MenuFont = ##MenuFont
  44. StatusFont = ##StatusFont
  45. MsgBoxFont = ##MsgBoxFont
  46. IconTitleFont = ##IconTitleFont
  47. ;The FlatMenus option allows the author to turn of the 3d border on menus
  48. FlatMenus = true
  49. ;This may allow authors to specify a theme matching stylesheet for Webviews, etc.
  50. CssName = cpwebvw.css
  51. ;This may allow authors to specify a theme matching XML file.
  52. XmlName = default.xml
  53. ; this theme designed for 15-bit color and higher
  54. MinColorDepth = 15
  55. ;---------- buttons ---------------------------------
  56. ;Overall button class
  57. [button]
  58. ;Normal button
  59. [button.pushbutton]
  60. bgtype = imagefile
  61. SizingMargins = 8, 8, 9, 9
  62. sizingType = Stretch
  63. ContentMargins = 3, 3, 3, 3
  64. ImageFile = Metallic\button.bmp
  65. imageCount = 5
  66. ImageLayout = vertical
  67. TextColor = 0 0 0
  68. FillColorHint = 240 241 245; Average fill color (light beige)
  69. BorderColorHint = 0 60 116; Edge color (dark blue grey)
  70. AccentColorHint = 250 196 88; Rollover hilite color (orange)
  71. MinSize= 10, 5
  72. ;Makes text for button grey for the disabled state
  73. [button.pushbutton(disabled)]
  74. TextColor = 161 161 146
  75. ;Color hint for default state
  76. [button.pushbutton(defaulted)]
  77. AccentColorHint = 240 241 245; Default state hilite color (light grey)
  78. ;Checkboxes
  79. [button.checkbox]
  80. bgtype = imagefile
  81. imagelayout=vertical
  82. sizingType = TrueSize
  83. SizingMargins = 0, 0, 0, 0
  84. ContentMargins = 0, 0, 0, 0
  85. imageCount = 12
  86. MirrorImage = false
  87. FillColorHint = 33 161 33; Checkmark color (green)
  88. BorderColorHint = 119 119 92; Edge color (dark grey)
  89. AccentColorHint = 250 196 88; Rollover hilite color (orange)
  90. ;----- Multiple control sizes for different video adapter resolution settings ----
  91. ImageSelectType = Dpi ; choose src image by DPI of target DC (vs. theme DPI)
  92. TrueSizeScalingType = Dpi
  93. TrueSizeStretchMark = 50; start stretching when target exceeds source size by 50%
  94. UniformSizing = true ; if you must stretch, do width & height equally
  95. ImageFile1=Metallic\CheckBox13.bmp
  96. ImageFile2=Metallic\CheckBox16.bmp
  97. ImageFile3=Metallic\CheckBox25.bmp
  98. MinDpi1=96
  99. MinDpi2=118
  100. MinDpi3=185
  101. ;Checkboxes can be disabled in various states, so each of the following entries sets the text
  102. ;to grey for the corresponding states.
  103. [button.checkbox(checkeddisabled)]
  104. TextColor = 161 161 146
  105. [button.checkbox(uncheckeddisabled)]
  106. TextColor = 161 161 146
  107. [button.checkbox(mixeddisabled)]
  108. TextColor = 161 161 146
  109. ;Radio buttons
  110. [button.radiobutton]
  111. bgtype = imagefile
  112. imagelayout=vertical
  113. transparent=true
  114. sizingType = TrueSize
  115. SizingMargins = 0, 0, 0, 0
  116. ContentMargins = 0, 0, 0, 0
  117. imageCount = 8
  118. FillColorHint = 33 161 33; Selection dot color (green)
  119. BorderColorHint = 119 119 92; Edge color (dark grey)
  120. AccentColorHint = 250 196 88; Rollover hilite color (orange)
  121. ;----- Multiple control sizes for different video adapter resolution settings ----
  122. ImageSelectType = Dpi ; choose src image by DPI of target DC (vs. theme DPI)
  123. TrueSizeScalingType = Dpi
  124. TrueSizeStretchMark = 50; start stretching when target exceeds source size by 50%
  125. UniformSizing = true ; if you must stretch, do width & height equally
  126. ImageFile1=Metallic\RadioButton13.bmp
  127. ImageFile2=Metallic\RadioButton16.bmp
  128. ImageFile3=Metallic\RadioButton25.bmp
  129. MinDpi1=96
  130. MinDpi2=118
  131. MinDpi3=185
  132. ;Radio buttons can be disabled in various states, so each of the following entries sets the text
  133. ;to grey for the corresponding states.
  134. [button.radiobutton(checkeddisabled)]
  135. TextColor = 161 161 146
  136. [button.radiobutton(uncheckeddisabled)]
  137. TextColor = 161 161 146
  138. ;The line enclosing a group of controls
  139. [button.groupbox]
  140. TextColor = 0 70 213
  141. bgtype = imagefile
  142. SizingMargins = 4, 4, 4, 4
  143. sizingType = Tile
  144. ImageFile = Metallic\GroupBox.bmp
  145. ;BorderOnly means that the area inside the sizing margins is not drawn (so it won't
  146. ;draw on top of the controls it surrounds)
  147. borderOnly = true
  148. transparent = true
  149. BorderColorHint = 119 119 92; Dark grey color
  150. NormalSize = 9999, 9999 ; never source size a groupbox (from IE)
  151. ;----------- combobox --------------------------------
  152. ;Dropdown controls
  153. [Combobox]
  154. ; Globals for the entire control
  155. BgType = BorderFill
  156. BorderSize = 1
  157. FillColor = 255 255 255
  158. BorderColor = 127 157 185
  159. [Combobox(Hot)]
  160. ; Globals when the mouse is over the control
  161. BorderColor = 127 157 185
  162. [Combobox(Disabled)]
  163. ; Globals when the control is disabled
  164. BorderColor = 201 199 186
  165. FillColor = 245 244 234
  166. ;The down pointing triangle button
  167. [Combobox.DropDownButton]
  168. BgType = imagefile
  169. imagelayout = vertical
  170. SizingType = Stretch
  171. ImageFile = Metallic\ComboButton.bmp
  172. SizingMargins = 3, 3, 3, 3
  173. ContentMargins = 0, 0, 0, 0
  174. ImageCount = 4
  175. GlyphType = ImageGlyph
  176. GlyphImageFile = Metallic\ComboButtonGlyph.bmp
  177. GlyphTransparent= true
  178. FillColorHint = 240 241 245; Average fill color (light grey)
  179. BorderColorHint = 255 255 255; Edge color (white)
  180. ;----------- edit --------------------------------
  181. [edit]
  182. BgType = BorderFill
  183. BorderSize = 1
  184. FillColor = 255 255 255
  185. BorderColor = 165 172 178
  186. [edit.edittext(Disabled)]
  187. FillColor = 235 235 228
  188. TextColor = 161 161 146
  189. [edit.edittext(ReadOnly)]
  190. FillColor = 235 235 228
  191. TextColor = 0 0 0
  192. ;----------- listbox --------------------------------
  193. [Listbox]
  194. BgType = BorderFill
  195. BorderSize = 1
  196. FillColor = 255 255 255
  197. BorderColor = 127 157 185
  198. ;--------- Scrollbar -------------------------
  199. [ScrollBar]
  200. ;The buttons, both horizontal and vertical in one strip
  201. ; Scrollbar Arrow Buttons
  202. [ScrollBar.ArrowBtn]
  203. BgType = ImageFile
  204. SizingMargins = 5, 5, 5, 5
  205. ContentMargins = 0, 0, 3, 3
  206. SizingType = Stretch
  207. ImageFile = Metallic\ScrollArrows.bmp
  208. ImageCount = 16
  209. ImageLayout = Vertical
  210. GlyphType = ImageGlyph
  211. GlyphTransparent= True
  212. FillColorHint = 240 241 245; Average fill color (light grey)
  213. BorderColorHint = 255 255 255; Edge color (white)
  214. ;----- the two sizes of scrollbar arrow glyphs ----
  215. ImageSelectType = size ; choose src image by DPI of target DC (vs. theme DPI)
  216. TrueSizeScalingType = size
  217. SourceShrink = True
  218. TrueSizeStretchMark = 150; start stretching when target exceeds source size by 150%
  219. UniformSizing = true; if you must stretch, do width & height equally
  220. ImageFile1 = Metallic\ScrollArrowGlyphsSmall.bmp
  221. ImageFile2 = Metallic\ScrollArrowGlyphs.bmp
  222. MinSize1 = 7, 7
  223. MinSize2 = 9, 9
  224. NormalSize = 7, 10
  225. ; Scrollbar Thumb (horizontal)
  226. [Scrollbar.ThumbBtnHorz]
  227. BgType = ImageFile
  228. SizingMargins = 5, 5, 5, 5
  229. ContentMargins = 4, 4, 0, 0
  230. ImageFile = Metallic\ScrollThumbHorizontal.bmp
  231. ImageCount = 4
  232. ImageLayout = Vertical
  233. FillColorHint = 240 241 245; Average fill color (light grey)
  234. BorderColorHint = 255 255 255; Edge color (white)
  235. ;A visual element in the middle of the scrollbar thumb
  236. [Scrollbar.GripperHorz]
  237. BgType = ImageFile
  238. SizingType = TrueSize
  239. ImageFile = Metallic\ScrollThumbGripperHorizontal.BMP
  240. imagelayout = vertical
  241. Transparent = True
  242. ImageCount = 4
  243. ; Scrollbar Thumb (vertical)
  244. [Scrollbar.ThumbBtnVert]
  245. BgType = ImageFile
  246. SizingMargins = 5, 5, 5, 5
  247. ContentMargins = 0, 0, 4, 4
  248. ImageFile = Metallic\ScrollThumbVertical.bmp
  249. ImageCount = 4
  250. ImageLayout = vertical
  251. FillColorHint = 240 241 245; Average fill color (light grey)
  252. BorderColorHint = 255 255 255; Edge color (white)
  253. ;A visual element in the middle of the scrollbar thumb
  254. [Scrollbar.GripperVert]
  255. BgType = ImageFile
  256. SizingType = TrueSize
  257. ImageFile = Metallic\ScrollThumbGripperVertical.BMP
  258. ImageCount = 4
  259. Transparent = True
  260. ImageLayout = Vertical
  261. ; Scrollbar Tracks (horizontal)
  262. [Scrollbar.LowerTrackHorz]
  263. BgType = imagefile
  264. ImageFile = Metallic\ScrollShaftHorizontal.bmp
  265. SizingMargins = 0, 0, 1, 1
  266. ImageCount = 4
  267. ImageLayout = Vertical
  268. FillColorHint = 240 241 245; Average fill color (light grey)
  269. [Scrollbar.UpperTrackHorz]
  270. BgType = imagefile
  271. ImageFile = Metallic\ScrollShaftHorizontal.bmp
  272. SizingMargins = 0, 0, 1, 1
  273. ImageCount = 4
  274. ImageLayout = Vertical
  275. FillColorHint = 240 241 245; Average fill color (light grey)
  276. ; Scrollbar Tracks (vertical)
  277. [Scrollbar.LowerTrackVert]
  278. BgType = imagefile
  279. ImageFile = Metallic\ScrollShaftVertical.bmp
  280. SizingMargins = 1, 1, 0, 0
  281. ImageCount = 4
  282. ImageLayout = Vertical
  283. FillColorHint = 240 241 245; Average fill color (light grey)
  284. [Scrollbar.UpperTrackVert]
  285. BgType = imagefile
  286. ImageFile = Metallic\ScrollShaftVertical.bmp
  287. SizingMargins = 1, 1, 0, 0
  288. ImageCount = 4
  289. ImageLayout = Vertical
  290. FillColorHint = 240 241 245; Average fill color (light grey)
  291. [ScrollBar.SizeBox]
  292. ImageFile = Metallic\ResizeGrip2.bmp
  293. bgtype = imagefile
  294. imageCount = 2
  295. sizingType = trueSize
  296. Transparent = True
  297. TransparentColor = 255 0 0
  298. FillColorHint = 119 119 92; Gripper dot color (dark grey)
  299. VAlign = Bottom
  300. ;----------- spin --------------------------------
  301. ;Spin buttons for incrementing values in a field
  302. [spin]
  303. bgtype = imagefile
  304. sizingType = tile
  305. ImageFile = Metallic\FieldOutlineBlue.bmp
  306. SizingMargins = 2, 2, 2, 2
  307. imageCount = 1
  308. [Spin.Up]
  309. bgtype = imagefile
  310. sizingType = stretch
  311. ImageFile = Metallic\SpinButtonBackgroundUp.bmp
  312. SizingMargins = 4, 4, 4, 4
  313. ContentMargins = 0, 0, 0, 0
  314. imageCount = 4
  315. ImageLayout = Vertical
  316. GlyphType = ImageGlyph
  317. GlyphImageFile = Metallic\SpinUpGlyph.bmp
  318. GlyphTransparent= True
  319. FillColorHint = 240 241 245; Average fill color (light grey)
  320. BorderColorHint = 255 255 255; Edge color (white)
  321. [Spin.Down]
  322. bgtype = imagefile
  323. sizingType = tile
  324. ImageFile = Metallic\SpinButtonBackgroundDown.bmp
  325. SizingMargins = 4, 4, 4, 4
  326. ContentMargins = 0, 0, 0, 0
  327. imageCount = 4
  328. ImageLayout = Vertical
  329. GlyphType = ImageGlyph
  330. GlyphImageFile = Metallic\SpinDownGlyph.bmp
  331. GlyphTransparent= True
  332. FillColorHint = 240 241 245; Average fill color (light grey)
  333. BorderColorHint = 255 255 255; Edge color (white)
  334. [Spin.Uphorz]
  335. bgtype = imagefile
  336. sizingType = stretch
  337. ImageFile = Metallic\SpinButtonBackgroundRight.bmp
  338. SizingMargins = 4, 4, 4, 4
  339. ContentMargins = 0, 0, 0, 0
  340. imageCount = 4
  341. ImageLayout = Vertical
  342. GlyphType = ImageGlyph
  343. GlyphImageFile = Metallic\SpinRightGlyph.bmp
  344. GlyphTransparent = True
  345. FillColorHint = 240 241 245; Average fill color (light grey)
  346. BorderColorHint = 255 255 255; Edge color (white)
  347. [Spin.Downhorz]
  348. bgtype = imagefile
  349. sizingType = Stretch
  350. ImageFile = Metallic\SpinButtonBackgroundLeft.bmp
  351. SizingMargins = 4, 4, 4, 4
  352. ContentMargins = 0, 0, 0, 0
  353. imageCount = 4
  354. ImageLayout = Vertical
  355. GlyphType = ImageGlyph
  356. GlyphImageFile = Metallic\SpinLeftGlyph.bmp
  357. GlyphTransparent = True
  358. FillColorHint = 240 241 245; Average fill color (light grey)
  359. BorderColorHint = 255 255 255; Edge color (white)
  360. ;----------- rebar --------------------------------
  361. ;Rebar is a container for toolbars
  362. [Rebar]
  363. bgtype =imagefile
  364. sizingtype=stretch
  365. ImageFile = Metallic\ToolbarBackground.bmp
  366. sizingmargins= 0, 0, 0, 4
  367. Font = ##Tahoma8
  368. TextColor = 127 124 115
  369. FillColorHint = 244 245 249; Background color of toolbars (light grey)
  370. [Rebar.Band]
  371. bgtype = none
  372. ContentMargins = 2, 0, 0, 0
  373. EdgeShadowColor = 216 210 189
  374. [Rebar.Gripper]
  375. bgtype = imagefile
  376. SizingMargins = 2, 1, 4, 2
  377. ContentMargins = 2, 1, 0, 0
  378. ImageFile = Metallic\ToolbarGripper.bmp
  379. sizingType = Tile
  380. Transparent = true
  381. FillColorHint = 119 119 92; Gripper dot color (dark grey)
  382. [Rebar.GripperVert]
  383. bgtype = imagefile
  384. SizingMargins = 3, 3, 2, 1
  385. ContentMargins = 1, 2, 0, 0
  386. ImageFile = Metallic\ToolbarGripperVert.bmp
  387. sizingType = Tile
  388. Transparent = true
  389. FillColorHint = 119 119 92; Gripper dot color (dark grey)
  390. [Rebar.Chevron]
  391. SizingMargins = 4, 4, 4, 4
  392. ContentMargins = 0, 0, 0, 0
  393. ImageFile = Metallic\ToolbarButtons.bmp
  394. bgtype = imagefile
  395. imagelayout = vertical
  396. imageCount= 6
  397. sizingType= Stretch
  398. Transparent = true
  399. GlyphType = ImageGlyph
  400. GlyphImageFile = Metallic\Chevron.bmp
  401. GlyphTransparent= true
  402. VAlign = Top
  403. FillColorHint = 0 0 0; Glyph color (black)
  404. [Rebar.ChevronVert]
  405. SizingMargins = 4, 4, 4, 4
  406. ContentMargins = 0, 0, 0, 0
  407. ImageFile = Metallic\ToolbarButtons.bmp
  408. bgtype = imagefile
  409. imagelayout = vertical
  410. imageCount= 6
  411. sizingType= Stretch
  412. Transparent = true
  413. GlyphType = ImageGlyph
  414. GlyphImageFile = Metallic\Chevron.bmp
  415. GlyphTransparent= true
  416. VAlign = Top
  417. FillColorHint = 0 0 0; Glyph color (black)
  418. ;----------- toolbar--------------------------------
  419. ;Button bars and menu bars in some applicatons
  420. [Toolbar]
  421. BgType = Borderfill
  422. Bordersize = 0
  423. FillColor = 239 239 237
  424. TextColor = 0 0 0
  425. [Toolbar(Pressed)]
  426. TextColor= 255 255 255
  427. [Toolbar.Button]
  428. SizingMargins = 4, 4, 4, 4
  429. ContentMargins = 0, 0, 0, 0
  430. ImageFile = Metallic\ToolbarButtons.bmp
  431. bgtype = imagefile
  432. imagelayout = vertical
  433. imageCount = 6
  434. sizingType = Stretch
  435. Transparent = true
  436. TransparentColor = 255 0 255
  437. FillColorHint = 240 241 245; Average fill color (light grey)
  438. BorderColorHint = 119 119 92; Edge color (dark grey)
  439. [Toolbar.Separator]
  440. SizingMargins = 5, 2, 2, 1
  441. ImageFile = Metallic\Separator.bmp
  442. bgtype = imagefile
  443. imageCount = 1
  444. sizingType = tile
  445. Transparent = true
  446. TransparentColor = 255 0 0
  447. FillColorHint = 177 183 187; Darker separator color (medium grey)
  448. [Toolbar.SeparatorVert]
  449. SizingMargins = 2, 1, 5, 1
  450. ImageFile = Metallic\SeparatorVert.bmp
  451. bgtype = imagefile
  452. imageCount = 1
  453. sizingType = tile
  454. Transparent = true
  455. TransparentColor = 255 0 0
  456. FillColorHint = 177 183 187; Darker separator color (medium grey)
  457. [Toolbar.DropdownButton]
  458. SizingMargins = 4, 4, 4, 4
  459. ContentMargins = 0, 0, 0, 0
  460. ImageFile = Metallic\ToolbarButtons.bmp
  461. bgtype = imagefile
  462. imagelayout = vertical
  463. imageCount = 6
  464. sizingType = Stretch
  465. Transparent = true
  466. TransparentColor = 255 0 255
  467. FillColorHint = 240 241 245; Average fill color (light grey)
  468. BorderColorHint = 119 119 92; Edge color (dark grey)
  469. [Toolbar.SplitButton]
  470. SizingMargins = 4, 2, 4, 4
  471. ImageFile = Metallic\ToolbarButtonsSplit.bmp
  472. bgtype = imagefile
  473. imagelayout = vertical
  474. imageCount = 6
  475. sizingType = Stretch
  476. Transparent = true
  477. TransparentColor = 255 0 255
  478. FillColorHint = 240 241 245; Average fill color (light grey)
  479. BorderColorHint = 119 119 92; Edge color (dark grey)
  480. [Toolbar.SplitButtonDropdown]
  481. SizingMargins = 2, 4, 4, 4
  482. ImageFile = Metallic\ToolbarButtonsSplitDropdown.bmp
  483. bgtype = imagefile
  484. imagelayout = vertical
  485. imageCount = 6
  486. sizingType = Stretch
  487. Transparent = true
  488. TransparentColor = 255 0 255
  489. GlyphType = ImageGlyph
  490. GlyphImageFile = Metallic\ToolbarButtonsSplitDropdownGlyph.bmp
  491. GlyphTransparent= true
  492. FillColorHint = 240 241 245; Average fill color (light grey)
  493. BorderColorHint = 119 119 92; Edge color (dark grey)
  494. ;----------- status--------------------------------
  495. ;The area at the bottom of a window containing miscellaneous status info
  496. ;The first is the container for the status sections
  497. [Status]
  498. SizingMargins = 50, 17, 5, 9
  499. ImageFile = Metallic\StatusBackground.bmp
  500. bgtype = imagefile
  501. imageCount = 1
  502. sizingType = Tile
  503. FillColorHint = 177 183 187; Average fill color (grey)
  504. ;The individual status item backgrounds
  505. [Status.Pane]
  506. SizingMargins = 0, 2, 2, 2
  507. ImageFile = Metallic\StatusPane.bmp
  508. bgtype = imagefile
  509. imageCount = 1
  510. sizingType = Tile
  511. Transparent = True
  512. TransparentColor = 255 0 0
  513. FillColorHint = 119 119 92; Resize gripper dots (dark grey)
  514. ;The individual status item backgrounds
  515. [Status.GripperPane]
  516. bgtype = none
  517. ;The resize corner
  518. [Status.Gripper]
  519. ContentMargins=0,0,0,0
  520. ImageFile = Metallic\ResizeGrip2.bmp
  521. bgtype = imagefile
  522. imageCount = 2
  523. sizingType = trueSize
  524. Transparent = True
  525. TransparentColor = 255 0 0
  526. FillColorHint = 119 119 92; Resize gripper dots (dark grey)
  527. VAlign = Bottom
  528. ;----------- list view --------------------------------
  529. ;Icon, list, details, etc.
  530. [ListView]
  531. BgType = BorderFill
  532. BorderSize = 1
  533. FillColor = 255 255 255
  534. BorderColor = 127 157 185
  535. ;----------- Tree view --------------------------------
  536. [TreeView]
  537. BgType = BorderFill
  538. BorderSize = 1
  539. FillColor = 255 255 255
  540. BorderColor = 127 157 185
  541. [TreeView.Glyph]
  542. bgtype = imagefile
  543. ImageFile = Metallic\treeExpandCollapse.bmp
  544. SizingType = TrueSize
  545. imagecount = 2
  546. imageLayout=vertical
  547. ;----------- header --------------------------------
  548. ;The area at the top of a list, with clickable headers for sort order
  549. [Header]
  550. bgtype = imagefile
  551. SizingMargins = 0, 0, 0, 3
  552. ImageFile = Metallic\ListviewHeaderBackground.bmp
  553. sizingType = tile
  554. [Header.HeaderItem]
  555. bgtype = imagefile
  556. SizingMargins = 8, 8, 3, 4
  557. ContentMargins = 3, 0, 0, 0
  558. ImageFile = Metallic\ListViewHeader.bmp
  559. imageCount=5
  560. imageLayout=vertical
  561. sizingType = tile
  562. transparent=true
  563. transparentcolor=255 0 0
  564. FillColorHint = 240 241 245; Average fill color (light grey)
  565. AccentColorHint = 252 194 71; Rollover hilite color (orange)
  566. ;----------- progress --------------------------------
  567. ;Progress bars
  568. [Progress]
  569. ProgressChunkSize=6
  570. ProgressSpaceSize=2
  571. bgType = borderFill
  572. fillType = Solid
  573. fillColor = 235 235 228
  574. bordersize = 1
  575. borderColor = 235 235 228
  576. [Progress.Bar]
  577. bgtype = imagefile
  578. ImageFile = Metallic\ProgressTrack.bmp
  579. MinSize=10,10
  580. sizingMargins = 4, 4, 3, 3
  581. SizingType = tile
  582. FillColorHint = 255 255 255; Background color (white)
  583. BorderColorHint = 104 104 104; Edge color (dark grey)
  584. NormalSize = 100, 18
  585. SourceShrink = true
  586. [Progress.Chunk]
  587. bgtype = imagefile
  588. ImageFile = Metallic\ProgressChunk.bmp
  589. sizingMargins = 0, 0, 6, 5
  590. SizingType = tile
  591. [Progress.BarVert]
  592. bgtype = imagefile
  593. ImageFile = Metallic\ProgressTrackVert.bmp
  594. sizingMargins = 3, 3, 4, 4
  595. SizingType = tile
  596. FillColorHint = 255 255 255; Background color (white)
  597. BorderColorHint = 104 104 104; Edge color (dark grey)
  598. [Progress.ChunkVert]
  599. bgtype = imagefile
  600. ImageFile = Metallic\ProgressChunkVert.bmp
  601. sizingMargins = 6, 5, 0, 0
  602. SizingType = tile
  603. FillColorHint = 46 211 49; Progress indicator color (green)
  604. ;----------- tab --------------------------------
  605. [Tab]
  606. bgType = borderFill
  607. fillType = Solid
  608. fillColor = 224 224 227
  609. bordersize = 0
  610. ;The whole content area of a tab page
  611. [Tab.Pane]
  612. bgtype = imagefile
  613. ImageFile = Metallic\TabPaneEdge.bmp
  614. sizingMargins = 2, 4, 2, 4
  615. SizingType = stretch
  616. imagecount = 1
  617. FillColorHint = 247 247 249; Light tab background color (very light grey)
  618. BorderColorHint = 145 155 156; Edge color (dark grey)
  619. [Tab.TabItem]
  620. SizingMargins = 6, 6, 6, 6
  621. ContentMargins = 0, 0, 0, 0
  622. bgtype=imagefile
  623. ImageFile = Metallic\tabItem.bmp
  624. imagecount=5
  625. imagelayout=vertical
  626. FillColorHint = 240 241 245; Tab average color (light grey)
  627. BorderColorHint = 146 146 146; Edge color (grey)
  628. AccentColorHint = 255 200 60; Rollover hilite color (orange)
  629. [Tab.TabItemLeftEdge]
  630. SizingMargins = 6, 6, 6, 6
  631. ContentMargins = 0, 0, 0, 0
  632. bgtype=imagefile
  633. ImageFile = Metallic\tabItemLeft.bmp
  634. imagecount=5
  635. imagelayout=vertical
  636. FillColorHint = 240 241 245; Tab average color (light grey)
  637. BorderColorHint = 240 241 245; Edge color (grey)
  638. AccentColorHint = 255 200 60; Rollover hilite color (orange)
  639. [Tab.TabItemRightEdge]
  640. SizingMargins = 6, 6, 6, 6
  641. ContentMargins = 0, 0, 0, 0
  642. bgtype=imagefile
  643. ImageFile = Metallic\tabItemRight.bmp
  644. imagecount=5
  645. imagelayout=vertical
  646. FillColorHint = 240 241 245; Tab average color (light grey)
  647. BorderColorHint = 240 241 245; Edge color (grey)
  648. AccentColorHint = 255 200 60; Rollover hilite color (orange)
  649. [Tab.TabItemBothEdge]
  650. SizingMargins = 6, 6, 6, 6
  651. ContentMargins = 0, 0, 0, 0
  652. bgtype=imagefile
  653. ImageFile = Metallic\tabItemBoth.bmp
  654. imagecount=5
  655. imagelayout=vertical
  656. FillColorHint = 240 241 245; Tab average color (light grey)
  657. BorderColorHint = 240 241 245; Edge color (grey)
  658. AccentColorHint = 255 200 60; Rollover hilite color (orange)
  659. [Tab.TopTabItem]
  660. SizingMargins = 6, 6, 6, 6
  661. ContentMargins = 0, 0, 0, 0
  662. bgtype=imagefile
  663. ImageFile = Metallic\tabItemTop.bmp
  664. imagecount=5
  665. imagelayout=vertical
  666. FillColorHint = 240 241 245; Tab average color (light grey)
  667. BorderColorHint = 240 241 245; Edge color (grey)
  668. AccentColorHint = 255 200 60; Rollover hilite color (orange)
  669. [Tab.TopTabItemLeftEdge]
  670. SizingMargins = 6, 6, 6, 6
  671. ContentMargins = 0, 0, 0, 0
  672. bgtype=imagefile
  673. ImageFile = Metallic\tabItemTopLeft.bmp
  674. imagecount=5
  675. imagelayout=vertical
  676. FillColorHint = 240 241 245; Tab average color (light grey)
  677. BorderColorHint = 240 241 245; Edge color (grey)
  678. AccentColorHint = 255 200 60; Rollover hilite color (orange)
  679. [Tab.TopTabItemRightEdge]
  680. SizingMargins = 6, 6, 6, 6
  681. ContentMargins = 0, 0, 0, 0
  682. bgtype=imagefile
  683. ImageFile = Metallic\tabItemTopRight.bmp
  684. imagecount=5
  685. imagelayout=vertical
  686. FillColorHint = 240 241 245; Tab average color (light grey)
  687. BorderColorHint = 240 241 245; Edge color (grey)
  688. AccentColorHint = 255 200 60; Rollover hilite color (orange)
  689. [Tab.TopTabItemBothEdge]
  690. SizingMargins = 6, 6, 6, 6
  691. ContentMargins = 0, 0, 0, 0
  692. bgtype=imagefile
  693. ImageFile = Metallic\tabItemTopBoth.bmp
  694. imagecount=5
  695. imagelayout=vertical
  696. FillColorHint = 240 241 245; Tab average color (light grey)
  697. BorderColorHint = 240 241 245; Edge color ( grey)
  698. AccentColorHint = 255 200 60; Rollover hilite color (orange)
  699. [Tab.Body]
  700. bgtype = imagefile
  701. stockImageFile = Metallic\TabBackground.bmp
  702. FillColorHint = 247 247 249; Light tab background color (very light grey)
  703. ImageSelectType = Dpi ; choose src image by DPI of target DC (vs. theme DPI)
  704. TrueSizeScalingType = Dpi
  705. TrueSizeStretchMark = 50; start stretching when target exceeds source size by 50%
  706. ImageFile1=Metallic\TabBackground.bmp
  707. ImageFile2=Metallic\TabBackground133.bmp
  708. MinDpi1=96
  709. MinDpi2=164
  710. ;----------- trackbar --------------------------------
  711. ;Volume sliders, etc.
  712. [TrackBar]
  713. bgType = borderFill
  714. fillType = Solid
  715. fillColor = 235 235 228
  716. bordersize = 1
  717. borderColor = 235 235 228
  718. ;The movable part of a horizontal slider (TBS_BOTH style)
  719. [TrackBar.Thumb]
  720. bgtype=imagefile
  721. ImageFile = Metallic\TrackbarHorizontal.bmp
  722. imagecount=5
  723. imagelayout = vertical
  724. SizingMargins = 3, 4, 3, 4
  725. sizingtype = tile
  726. FillColorHint = 240 241 245; Average background color (light grey)
  727. BorderColorHint = 240 241 245; Edge color (grey)
  728. AccentColorHint = 71 196 70; Rollover color (green)
  729. ;The movable part of a horizontal slider (TBS_TOP style)
  730. [TrackBar.ThumbTop]
  731. bgtype=imagefile
  732. imagecount=5
  733. imagelayout = vertical
  734. transparent=true
  735. sizingtype = truesize
  736. transparentcolor= 242 241 231
  737. FillColorHint = 240 241 245; Average background color (light grey)
  738. BorderColorHint = 240 241 245; Edge color (grey)
  739. AccentColorHint = 71 196 70; Rollover color (green)
  740. ;----- the three sizes ----
  741. ImageSelectType = Dpi ; choose src image by DPI of target DC (vs. theme DPI)
  742. TrueSizeScalingType = Dpi
  743. TrueSizeStretchMark = 50; start stretching when target exceeds source size by 50%
  744. UniformSizing = true ; if you must stretch, do width & height equally
  745. ImageFile1=Metallic\TrackBarUp13.bmp
  746. ImageFile2=Metallic\TrackBarUp16.bmp
  747. ImageFile3=Metallic\TrackBarUp25.bmp
  748. MinDpi1=96
  749. MinDpi2=118
  750. MinDpi3=185
  751. ;The movable part of a horizontal slider (TBS_BOTTOM style)
  752. [TrackBar.ThumbBottom]
  753. bgtype=imagefile
  754. imagecount=5
  755. transparent=true
  756. SizingMargins = 3, 6, 6, 10
  757. sizingtype = truesize
  758. transparentcolor= 242 241 231
  759. ImageLayout = vertical
  760. FillColorHint = 240 241 245; Average background color (light grey)
  761. BorderColorHint = 240 241 245; Edge color (grey)
  762. AccentColorHint = 71 196 70; Rollover color (green)
  763. ;----- the three sizes ----
  764. ImageSelectType = Dpi ; choose src image by DPI of target DC (vs. theme DPI)
  765. TrueSizeScalingType = Dpi
  766. TrueSizeStretchMark = 50; start stretching when target exceeds source size by 50%
  767. UniformSizing = true ; if you must stretch, do width & height equally
  768. ImageFile1=Metallic\TrackBarDown13.bmp
  769. ImageFile2=Metallic\TrackBarDown16.bmp
  770. ImageFile3=Metallic\TrackBarDown25.bmp
  771. MinDpi1=96
  772. MinDpi2=118
  773. MinDpi3=185
  774. ;The movable part of a vertical slider (TBS_BOTH style)
  775. [TrackBar.ThumbVert]
  776. bgtype=imagefile
  777. ImageFile = Metallic\TrackbarVertical.bmp
  778. SizingMargins = 3, 4, 3, 4
  779. sizingtype = tile
  780. imagecount=5
  781. ImageLayout = vertical
  782. FillColorHint = 240 241 245; Average background color (light grey)
  783. BorderColorHint = 240 241 245; Edge color (grey)
  784. AccentColorHint = 71 196 70; Rollover color (green)
  785. ;The movable part of a vertical slider (TBS_LEFT style)
  786. [TrackBar.ThumbLeft]
  787. bgtype=imagefile
  788. sizingtype = truesize
  789. imagecount=5
  790. transparent=true
  791. transparentcolor= 242 241 231
  792. ImageLayout = vertical
  793. FillColorHint = 240 241 245; Average background color (light grey)
  794. BorderColorHint = 240 241 245; Edge color (grey)
  795. AccentColorHint = 71 196 70; Rollover color (green)
  796. ;----- the three sizes ----
  797. ImageSelectType = Dpi ; choose src image by DPI of target DC (vs. theme DPI)
  798. TrueSizeScalingType = Dpi
  799. TrueSizeStretchMark = 50; start stretching when target exceeds source size by 50%
  800. UniformSizing = true ; if you must stretch, do width & height equally
  801. ImageFile1=Metallic\TrackBarLeft13.bmp
  802. ImageFile2=Metallic\TrackBarLeft16.bmp
  803. ImageFile3=Metallic\TrackBarLeft25.bmp
  804. MinDpi1=96
  805. MinDpi2=118
  806. MinDpi3=185
  807. ;The movable part of a vertical slider (TBS_RIGHT style)
  808. [TrackBar.ThumbRight]
  809. bgtype=imagefile
  810. ImageFile = Metallic\TrackbarRight13.bmp
  811. sizingtype = truesize
  812. imagecount=5
  813. transparent=true
  814. transparentcolor= 242 241 231
  815. ImageLayout = vertical
  816. FillColorHint = 240 241 245; Average background color (light grey)
  817. BorderColorHint = 240 241 245; Edge color (grey)
  818. AccentColorHint = 71 196 70; Rollover color (green)
  819. ;----- the three sizes ----
  820. ImageSelectType = Dpi ; choose src image by DPI of target DC (vs. theme DPI)
  821. TrueSizeScalingType = Dpi
  822. TrueSizeStretchMark = 50; start stretching when target exceeds source size by 50%
  823. UniformSizing = true ; if you must stretch, do width & height equally
  824. ImageFile1=Metallic\TrackBarRight13.bmp
  825. ImageFile2=Metallic\TrackBarRight16.bmp
  826. ImageFile3=Metallic\TrackBarRight25.bmp
  827. MinDpi1=96
  828. MinDpi2=118
  829. MinDpi3=185
  830. ;The track along which a slidermoves
  831. [TrackBar.Track]
  832. bgtype=imagefile
  833. ImageFile = Metallic\sliderTrack.bmp
  834. imagecount=1
  835. sizingtype = stretch
  836. SizingMargins = 2, 2, 2, 2
  837. FillColorHint = 240 241 245; Average background color (light grey)
  838. BorderColorHint = 240 241 245; Average background color (grey)
  839. ;The vertical track along which a slider moves
  840. [TrackBar.TrackVert]
  841. bgtype=imagefile
  842. ImageFile = Metallic\sliderTrack.bmp
  843. imagecount=1
  844. sizingtype = stretch
  845. SizingMargins = 2, 2, 2, 2
  846. FillColorHint = 240 241 245; Average background color (light grey)
  847. BorderColorHint = 119 119 92; Edge color (dark grey)
  848. ;Set the color of the tickmarks drawn for the slider
  849. [TrackBar.Tics]
  850. color=161 161 146
  851. ;Set the color of the tickmarks drawn for the vertical slider
  852. [TrackBar.TicsVert]
  853. color=161 161 146
  854. ;----------- tooltip --------------------------------
  855. ;Set the color or image background for tooltips
  856. [Tooltip.Close]
  857. BgType = ImageFile
  858. ImageFile = Metallic\BalloonClose.bmp
  859. imagecount=3
  860. sizingtype = truesize
  861. Imagelayout = vertical
  862. ;-------------- Windows ------------------------
  863. [Window]
  864. BgType = ImageFile
  865. Transparent = true
  866. TextShadowOffset = 1,1
  867. TextShadowColor = 199 194 209
  868. [Window.Caption]
  869. ImageFile = Metallic\Framecaption.bmp
  870. SizingMargins = 28, 35, 9, 17
  871. ContentMargins = 1, 1, 1, 1
  872. CaptionMargins = 4, 3, 0, 0
  873. SizingType = stretch
  874. Imagelayout = vertical
  875. ImageCount=2
  876. Transparent = True
  877. FillColorHint = 164 163 190; Average background color (strong grey)
  878. [Window.Caption(active)]
  879. TextShadowType = Single
  880. [Window.CaptionSizingTemplate]
  881. ImageFile = Metallic\FrameCaptionSizing.bmp
  882. SizingMargins = 28, 35, 9, 17
  883. ContentMargins = 18, 18, 26, 0
  884. SizingType = tile
  885. Imagelayout = vertical
  886. ImageCount=2
  887. Transparent = True
  888. TransparentColor = 0 0 0
  889. [Window.SmallCaption]
  890. ImageFile = Metallic\SmallFrameCaption.bmp
  891. SizingMargins = 24, 37, 3, 15
  892. ContentMargins = 1, 1, 1, 1
  893. SizingType = tile
  894. Imagelayout = vertical
  895. ImageCount=2
  896. FillColorHint = 164 163 190; Average background color (strong grey)
  897. [Window.SmallCaptionSizingTemplate]
  898. ImageFile = Metallic\SmallFrameCaptionSizing.bmp
  899. SizingMargins = 24, 37, 9, 8
  900. ContentMargins = 14, 14, 16, 0
  901. SizingType = tile
  902. Imagelayout = vertical
  903. ImageCount=2
  904. Transparent = True
  905. TransparentColor = 0 0 0
  906. ;The representation of a minimized window in and MDI application
  907. [Window.MinCaption]
  908. ImageFile = Metallic\FrameCaptionMin.bmp
  909. ImageCount = 2
  910. ImageLayout = vertical
  911. SizingType = stretch
  912. SizingMargins = 23, 26, 12, 8
  913. ContentMargins = 3, 3, 0, 3
  914. CaptionMargins = 4, 3, 0, 0
  915. FillColorHint = 164 163 190; Average background color (strong grey)
  916. ;Shows as a strip at the top of a window when an application is maximized, rather than as a frame
  917. ;surrounding the window
  918. [Window.MaxCaption]
  919. ImageFile = Metallic\FrameMaximized.bmp
  920. SizingMargins = 28, 35, 9, 17
  921. ContentMargins = 1, 1, 1, 1
  922. SizingType = stretch
  923. SizingType = Tile
  924. Imagelayout = vertical
  925. ImageCount=2
  926. CaptionMargins = 10, 3, 4, 2
  927. ContentAlignment = left
  928. FillColorHint = 164 163 190; Average background color (strong grey)
  929. [Window.MaxCaption(Active)]
  930. TextShadowType = Single
  931. [Window.FrameLeft]
  932. ImageFile = Metallic\frameLeft.bmp
  933. SizingMargins = 1, 1, 0, 0
  934. SizingType = stretch
  935. ImageLayout = vertical
  936. ImageCount = 2
  937. Transparent = FALSE
  938. Borderonly = FALSE
  939. [Window.FrameRight]
  940. ImageFile = Metallic\frameRight.bmp
  941. SizingMargins = 1, 1, 0, 0
  942. ;ContentMargins = 1, 3, 0, 3
  943. SizingType = stretch
  944. ImageLayout = vertical
  945. ImageCount = 2
  946. Transparent = FALSE
  947. Borderonly = FALSE
  948. [Window.FrameBottom]
  949. ImageFile = Metallic\frameBottom.bmp
  950. SizingMargins = 5, 5, 1, 2
  951. SizingType = stretch
  952. ImageLayout = vertical
  953. ImageCount = 2
  954. Transparent = FALSE
  955. Borderonly = FALSE
  956. [Window.SmallFrameLeft]
  957. ImageFile = Metallic\frameLeft.bmp
  958. SizingMargins = 1, 2, 0, 0
  959. SizingType = stretch
  960. ImageLayout = vertical
  961. ImageCount = 2
  962. Transparent = FALSE
  963. Borderonly = FALSE
  964. [Window.SmallFrameRight]
  965. ImageFile = Metallic\frameRight.bmp
  966. SizingMargins = 1, 2, 0, 0
  967. SizingType = stretch
  968. ImageLayout = vertical
  969. ImageCount = 2
  970. Transparent = FALSE
  971. Borderonly = FALSE
  972. [Window.SmallFrameBottom]
  973. ImageFile = Metallic\frameBottom.bmp
  974. SizingMargins = 5, 5, 1, 2
  975. SizingType = stretch
  976. ImageLayout = vertical
  977. ImageCount = 2
  978. Transparent = FALSE
  979. Borderonly = FALSE
  980. ;Background for dialog boxes
  981. [Window.dialog]
  982. bgType = BorderFill
  983. FillColor = 255 0 0
  984. BorderColor = 255 233 216
  985. ;Close button in Window titlebar
  986. [Window.CloseButton]
  987. BgType = ImageFile
  988. SizingMargins = 5, 5, 5, 5
  989. ContentMargins = 2, 2, 2, 2
  990. sizingType = Stretch
  991. ImageFile = Metallic\CloseButton.bmp
  992. GlyphType = ImageGlyph
  993. GlyphTransparent = True
  994. ImageCount = 8
  995. ImageLayout = Vertical
  996. OffsetType = TopRight
  997. Offset = -25, 5
  998. FillColorHint = 228 93 61; Close box average color (brick red)
  999. BorderColorHint = 255 255 255; Edge color (white)
  1000. ;----- glyphs ----
  1001. ImageSelectType = size ; choose src image by DPI of target DC (vs. theme DPI)
  1002. UniformSizing = true ; if you must stretch, do width & height equally
  1003. ImageFile1=metallic\CloseGlyph6.bmp
  1004. ImageFile2=metallic\CloseGlyph9.bmp
  1005. ImageFile3=metallic\CloseGlyph.bmp
  1006. ImageFile4=metallic\CloseGlyph19.bmp
  1007. ImageFile5=metallic\CloseGlyph23.bmp
  1008. MinDpi1=96
  1009. MinDpi2=126
  1010. MinDpi3=170
  1011. ;Maximize button in window titlebar
  1012. [Window.MaxButton]
  1013. BgType = ImageFile
  1014. SizingMargins = 5, 5, 5, 5
  1015. ContentMargins = 2, 2, 2, 2
  1016. sizingType = Stretch
  1017. ImageFile = Metallic\CaptionButton.bmp
  1018. GlyphType = ImageGlyph
  1019. GlyphTransparent = True
  1020. ImageCount = 8
  1021. ImageLayout=Vertical
  1022. OffsetType = TopRight
  1023. Offset = -49, 5
  1024. FillColorHint = 177 183 187; Titlebar button color (grey)
  1025. BorderColorHint = 255 255 255; Edge color (white)
  1026. ;----- glyphs ----
  1027. ImageSelectType = size ; choose src image by DPI of target DC (vs. theme DPI)
  1028. UniformSizing = true ; if you must stretch, do width & height equally
  1029. ImageFile1=metallic\MaximizeGlyph6.bmp
  1030. ImageFile2=metallic\MaximizeGlyph9.bmp
  1031. ImageFile3=metallic\MaximizeGlyph.bmp
  1032. ImageFile4=metallic\MaximizeGlyph19.bmp
  1033. ImageFile5=metallic\MaximizeGlyph23.bmp
  1034. MinDpi1=96
  1035. MinDpi2=126
  1036. MinDpi3=170
  1037. ;Restore button in window titlebar
  1038. [Window.RestoreButton]
  1039. BgType = ImageFile
  1040. SizingMargins = 5, 5, 5, 5
  1041. ContentMargins = 2, 2, 2, 2
  1042. sizingType = Stretch
  1043. ImageFile = Metallic\CaptionButton.bmp
  1044. GlyphType = ImageGlyph
  1045. GlyphTransparent = True
  1046. ImageCount = 8
  1047. ImageLayout=Vertical
  1048. OffsetType = TopRight
  1049. Offset = -49, 5
  1050. FillColorHint = 177 183 187; Titlebar button color (grey)
  1051. BorderColorHint = 255 255 255; Edge color (white)
  1052. ;----- glyphs ----
  1053. ImageSelectType = size ; choose src image by DPI of target DC (vs. theme DPI)
  1054. UniformSizing = true ; if you must stretch, do width & height equally
  1055. ImageFile1=metallic\RestoreGlyph6.bmp
  1056. ImageFile2=metallic\RestoreGlyph9.bmp
  1057. ImageFile3=metallic\RestoreGlyph.bmp
  1058. ImageFile4=metallic\RestoreGlyph19.bmp
  1059. ImageFile5=metallic\RestoreGlyph23.bmp
  1060. MinDpi1=96
  1061. MinDpi2=126
  1062. MinDpi3=170
  1063. ;Minimize button in window titlebar
  1064. [Window.MinButton]
  1065. BgType = ImageFile
  1066. SizingMargins = 5, 5, 5, 5
  1067. ContentMargins = 2, 2, 2, 2
  1068. sizingType = Stretch
  1069. ImageFile = Metallic\CaptionButton.bmp
  1070. GlyphType = ImageGlyph
  1071. GlyphTransparent = True
  1072. ImageCount = 8
  1073. ImageLayout=Vertical
  1074. OffsetType = TopRight
  1075. Offset = -73, 5
  1076. FillColorHint = 177 183 187; Titlebar button color (grey)
  1077. BorderColorHint = 255 255 255; Edge color (white)
  1078. ;----- glyphs ----
  1079. ImageSelectType = size ; choose src image by DPI of target DC (vs. theme DPI)
  1080. UniformSizing = true ; if you must stretch, do width & height equally
  1081. ImageFile1=metallic\MinimizeGlyph6.bmp
  1082. ImageFile2=metallic\MinimizeGlyph9.bmp
  1083. ImageFile3=metallic\MinimizeGlyph.bmp
  1084. ImageFile4=metallic\MinimizeGlyph19.bmp
  1085. ImageFile5=metallic\MinimizeGlyph23.bmp
  1086. MinDpi1=96
  1087. MinDpi2=126
  1088. MinDpi3=170
  1089. ;Help button in window titlebar--normally only appears on dialog windows
  1090. [Window.HelpButton]
  1091. BgType = ImageFile
  1092. SizingMargins = 5, 5, 5, 5
  1093. ContentMargins = 2, 2, 2, 2
  1094. sizingType = Stretch
  1095. ImageFile = Metallic\CaptionButton.bmp
  1096. GlyphType = ImageGlyph
  1097. GlyphTransparent = True
  1098. ImageCount = 8
  1099. ImageLayout=Vertical
  1100. OffsetType = TopRight
  1101. Offset = -73, 5
  1102. MirrorImage = true ; don't remove this (must specify to be localizable)
  1103. FillColorHint = 177 183 187; Titlebar button color (grey)
  1104. BorderColorHint = 255 255 255; Edge color (white)
  1105. ;----- glyphs ----
  1106. ImageSelectType = size ; choose src image by DPI of target DC (vs. theme DPI)
  1107. UniformSizing = true ; if you must stretch, do width & height equally
  1108. ImageFile1=metallic\HelpGlyph6.bmp
  1109. ImageFile2=metallic\HelpGlyph9.bmp
  1110. ImageFile3=metallic\HelpGlyph.bmp
  1111. ImageFile4=metallic\HelpGlyph19.bmp
  1112. ImageFile5=metallic\HelpGlyph23.bmp
  1113. MinDpi1=96
  1114. MinDpi2=126
  1115. MinDpi3=170
  1116. ;The Titlebar icon, next to the window title
  1117. [Window.SysButton]
  1118. OffsetType = TopLeft
  1119. Offset = 10, 3
  1120. ;Close button for palette windows
  1121. [Window.SmallCloseButton]
  1122. BgType = ImageFile
  1123. SizingMargins = 5, 5, 5, 5
  1124. ContentMargins = 0, 0, 0, 0
  1125. sizingType = Stretch
  1126. ImageFile = Metallic\SmallCloseButton.bmp
  1127. GlyphType = ImageGlyph
  1128. GlyphImageFile = Metallic\SmallCloseGlyph.bmp
  1129. GlyphTransparent = True
  1130. ImageCount = 8
  1131. ImageLayout = Vertical
  1132. OffsetType = TopRight
  1133. Offset = -16, 3
  1134. FillColorHint = 228 93 61; Close box average color (brick red)
  1135. BorderColorHint = 255 255 255; Edge color (white)
  1136. ;Close button for a maximized MDI window
  1137. [Window.MDICloseButton]
  1138. BgType = ImageFile
  1139. sizingType = stretch
  1140. ImageFile = Metallic\MDICaptionButton.bmp
  1141. ImageCount=4
  1142. ImageLayout = Vertical
  1143. SizingMargins = 4, 4, 4, 4
  1144. ContentMargins = 0, 0, 0, 0
  1145. OffsetType = TopRight
  1146. Offset = -19, 1
  1147. GlyphType = ImageGlyph
  1148. GlyphImageFile = Metallic\MDIGlyphClose.bmp
  1149. GlyphTransparent= true
  1150. FillColorHint = 240 241 245; Average background color (light grey)
  1151. BorderColorHint = 255 255 255; Edge color (white)
  1152. ;Restore button for a maximized MDI window
  1153. [Window.MDIRestoreButton]
  1154. BgType = ImageFile
  1155. sizingType = stretch
  1156. ImageFile = Metallic\MDICaptionButton.bmp
  1157. ImageCount=4
  1158. ImageLayout = Vertical
  1159. SizingMargins = 4, 4, 4, 4
  1160. ContentMargins = 0, 0, 0, 0
  1161. OffsetType = TopRight
  1162. Offset = -37, 1
  1163. GlyphType = ImageGlyph
  1164. GlyphImageFile = Metallic\MDIGlyphRestore.bmp
  1165. GlyphTransparent= true
  1166. FillColorHint = 240 241 245; Average background color (light grey)
  1167. BorderColorHint = 255 255 255; Edge color (white)
  1168. ;Minimize button for a maximized MDI window
  1169. [Window.MDIMinButton]
  1170. BgType = ImageFile
  1171. sizingType = stretch
  1172. ImageFile = Metallic\MDICaptionButton.bmp
  1173. ImageCount=4
  1174. ImageLayout = Vertical
  1175. SizingMargins = 4, 4, 4, 4
  1176. ContentMargins = 0, 0, 0, 0
  1177. OffsetType = TopRight
  1178. Offset = -53, 1
  1179. GlyphType = ImageGlyph
  1180. GlyphImageFile = Metallic\MDIGlyphMinimize.bmp
  1181. GlyphTransparent= true
  1182. FillColorHint = 240 241 245; Average background color (light grey)
  1183. BorderColorHint = 255 255 255; Edge color (white)
  1184. ;-------------- Start Panel -------------------
  1185. [StartPanel]
  1186. bgtype = none
  1187. DefaultPaneSize = 0, 0, 380, 440
  1188. [StartPanel.UserPane]
  1189. UserPicture = True
  1190. ImageLayout = Horizontal
  1191. TextColor = 255 255 255
  1192. Font = ##StartPanelFont
  1193. DefaultPaneSize = 0, 0, 380, 64
  1194. BgType = Imagefile
  1195. Transparent = True
  1196. ImageFile = Metallic\StartUserPanel.bmp
  1197. Imagecount = 1
  1198. SizingMargins = 59, 60, 62, 0
  1199. sizingType = Stretch
  1200. TEXTSHADOWOFFSET= 2, 2
  1201. textshadowcolor = 31 34 38
  1202. TextShadowType = continuous
  1203. FillColorHint = 206 206 219; Average background (grey)
  1204. [StartPanel.UserPicture]
  1205. BgType = ImageFile
  1206. ImageFile = Metallic\UserTileBackground.bmp
  1207. Imagecount = 1
  1208. SizingType = Stretch
  1209. SizingMargins = 6, 10, 6, 10
  1210. ContentMargins = 8, 6, 8, 6
  1211. Transparent = true
  1212. FillColorHint = 240 241 245; Average Background (light grey)
  1213. [StartPanel.ProgList]
  1214. DefaultPaneSize = 0, 0, 190, 306
  1215. ContentMargins = 6 4 9 5
  1216. TextColor = 55 55 56
  1217. HotTracking = 48 112 208
  1218. CaptionText = 128 128 128
  1219. BgType = ImageFile
  1220. SizingType = Stretch
  1221. SizingMargins = 2, 153, 3, 0
  1222. sizingType = Stretch
  1223. ImageFile = Metallic\StartPanelMFUBackground.bmp
  1224. imagecount = 1
  1225. FillColorHint = 240 241 245; Average Background (light grey)
  1226. [StartPanel.ProgListSeparator]
  1227. BgType = ImageFile
  1228. SizingType = TrueSize
  1229. ImageFile = Metallic\StartProgramsSeparator.bmp
  1230. [StartPanel.MorePrograms]
  1231. DefaultPaneSize = 0, 0, 190, 30
  1232. TextColor = 55 55 56
  1233. HotTracking = 48 112 208
  1234. Font = ##Tahoma8Bold
  1235. BgType = ImageFile
  1236. SizingType = Stretch
  1237. SizingMargins = 3, 0, 0, 1
  1238. ; left and right contentmargins should match proglist
  1239. ContentMargins = 8, 8, 0, 6
  1240. ImageFile = Metallic\StartPanelMoreProgBackGround.BMP
  1241. imagecount = 1
  1242. sizingType = Stretch
  1243. [StartPanel.MoreProgramsArrow]
  1244. BgType = ImageFile
  1245. SizingType = TrueSize
  1246. ImageFile = Metallic\StartPanelMoreProgArrow.bmp
  1247. ImageCount = 1
  1248. FillColorHint = 108 207 108; Average color (green)
  1249. [StartPanel.MoreProgramsArrow(hot)]
  1250. BgType = ImageFile
  1251. SizingType = TrueSize
  1252. ImageFile = Metallic\StartPanelMoreProgArrowHot.bmp
  1253. ImageCount = 1
  1254. FillColorHint = 107 239 107; Average color (bright green)
  1255. [StartPanel.PlacesList]
  1256. DefaultPaneSize = 0, 0, 190, 336
  1257. ContentMargins = 4 6 9 5
  1258. TextColor = 10 36 106
  1259. HotTracking = 80 150 248
  1260. BgType = imageFile
  1261. ImageFile = Metallic\StartPanelPlacesBackground.bmp
  1262. imagecount = 1
  1263. SizingMargins = 172, 7, 3, 1
  1264. sizingType = Stretch
  1265. FillColorHint = 240 241 245; Background color (light grey)
  1266. [StartPanel.PlacesListSeparator]
  1267. BgType = ImageFile
  1268. SizingType = TrueSize
  1269. ImageFile = Metallic\StartPlacesSeparator.bmp
  1270. [StartPanel.Logoff]
  1271. ContentMargins = 0, 0, 4, 2
  1272. DefaultPaneSize = 0, 0, 380, 40
  1273. TextColor = 0 0 0
  1274. HotTracking = 255 255 255
  1275. bgType = imagefile
  1276. ImageFile = Metallic\StartPanelLogoffBackground.bmp
  1277. imagecount = 1
  1278. sizingMargins = 49, 47, 0, 38
  1279. sizingType = Stretch
  1280. FillColorHint = 177 183 187; Background color (grey)
  1281. ;; note that if you want transparent LogoffButtons they MUST be 32 bit
  1282. ;; images with an alphachanel, not 8 or 24 bit images with a TransparentColor
  1283. [StartPanel.LogoffButtons]
  1284. BgType = ImageFile
  1285. Transparent = True
  1286. SizingType = TrueSize
  1287. ImageFile = Metallic\StartPanelLogoffButtons.bmp
  1288. ImageCount = 1
  1289. [StartPanel.LogoffButtons(hot)]
  1290. BgType = ImageFile
  1291. Transparent = True
  1292. SizingType = TrueSize
  1293. ImageFile = Metallic\StartPanelLogoffButtonsHot.bmp
  1294. ImageCount = 1
  1295. ;-------------- Taskbar specific --------------
  1296. [Start::Button]
  1297. BgType = ImageFile
  1298. SizingType = Stretch
  1299. SizingMargins = 6, 52, 13, 14
  1300. ContentMargins = 10, 24, 2, 4
  1301. ImageFile = Metallic\StartButton.bmp
  1302. ImageCount = 3
  1303. ImageLayout = Vertical
  1304. Transparent = True
  1305. Font= ##StartButtonFont
  1306. TextColor = 255 255 255
  1307. TEXTSHADOWOFFSET= 2, 2
  1308. textshadowcolor = 69 76 16
  1309. TextShadowType = continuous
  1310. FillColorHint = 74 153 73; Average color (green)
  1311. [StartMenu::MenuBand]
  1312. TextColor = 0 0 0
  1313. [StartMenu::MenuBand(Hot)]
  1314. TextColor = 255 255 255
  1315. [StartMenu::MenuBand.NewAppButton]
  1316. BgType = ImageFile
  1317. SizingType = Stretch
  1318. SizingMargins = 6, 1, 0, 0
  1319. ContentMargins = 10, 0, 3, 0
  1320. ImageFile = Metallic\StartGroupNewAppButton.bmp
  1321. ImageCount = 1
  1322. Transparent = True
  1323. TransparentColor= 255 0 0
  1324. FillcolorHint = 254 234 182; Background newly installed app color (light orange)
  1325. [StartMenu::MenuBand.Seperator]
  1326. BgType = ImageFile
  1327. SizingType = Stretch
  1328. SizingMargins = 6, 1, 3, 0
  1329. ContentMargins = 10, 0, 3, 0
  1330. ImageFile = Metallic\StartGroupSeperator.bmp
  1331. ImageCount = 1
  1332. Transparent = True
  1333. TransparentColor= 255 0 0
  1334. FillColorHint = 211 211 200; Separator color (grey)
  1335. [StartMenu::Toolbar]
  1336. BgType = ImageFile
  1337. ImageFile = Metallic\StartGroupBackground.bmp
  1338. SizingType = Stretch
  1339. SizingMargins = 6, 5, 3, 4
  1340. ContentMargins = 0, 0, 0, 0
  1341. Font= ##Tahoma8
  1342. TextColor = 0 0 0
  1343. FillColorHint = 255 255 255; Background of More Programs menu (white)
  1344. AccentColorHint = 240 241 245; Left edge of More Programs menu (grey)
  1345. [StartMenu::Toolbar(Hot)]
  1346. TextColor = 255 255 255
  1347. [StartMenu::Toolbar.Button]
  1348. BgType = ImageFile
  1349. SizingType = Stretch
  1350. SizingMargins = 6, 1, 0, 0
  1351. ContentMargins = 10, 0, 3, 0
  1352. ImageFile = Metallic\StartGroupToolbarButton.bmp
  1353. ImageCount = 3
  1354. ImageLayout = vertical
  1355. Transparent = True
  1356. TransparentColor= 255 0 0
  1357. FillColorHint = 177 83 187; Rollover of item on More Programs menu (grey)
  1358. [TaskBar::Toolbar]
  1359. BgType = None
  1360. Font= ##Tahoma8
  1361. TextColor = 0 0 0
  1362. [TaskBar::Toolbar.Button]
  1363. BgType = ImageFile
  1364. SizingType = Stretch
  1365. SizingMargins = 4, 4, 16, 8
  1366. ContentMargins = 0, 0, 4, 4
  1367. ImageFile = Metallic\TaskBandButtonNoEdge.bmp
  1368. ImageCount = 6
  1369. ImageLayout = vertical
  1370. Transparent = True
  1371. FillColorHint = 177 183 187; Average background color (grey)
  1372. [TaskBar::Toolbar.DropdownButton]
  1373. BgType = ImageFile
  1374. SizingType = Stretch
  1375. SizingMargins = 4, 4, 16, 8
  1376. ContentMargins = 2, 0, 4, 4
  1377. ImageFile = Metallic\TaskBandButtonNoEdge.bmp
  1378. ImageCount = 6
  1379. ImageLayout = vertical
  1380. Transparent = True
  1381. FillColorHint = 177 183 187; Average background color (grey)
  1382. [TaskBarVert::Toolbar]
  1383. BgType = None
  1384. Font= ##Tahoma8
  1385. TextColor = 0 0 0
  1386. [TaskBar::Toolbar(checked)]
  1387. TextColor = 255 255 255
  1388. [TaskBar::Toolbar(pressed)]
  1389. TextColor = 255 255 255
  1390. [TaskBar::Toolbar(hotchecked)]
  1391. TextColor = 255 255 255
  1392. [TaskBarVert::Toolbar(checked)]
  1393. TextColor = 255 255 255
  1394. [TaskBarVert::Toolbar(pressed)]
  1395. TextColor = 255 255 255
  1396. [TaskBarVert::Toolbar(hotchecked)]
  1397. TextColor = 255 255 255
  1398. [TaskBarVert::Toolbar.Button]
  1399. BgType = ImageFile
  1400. SizingType = Stretch
  1401. SizingMargins = 4, 4, 15, 3
  1402. ContentMargins = 1, 1, 1, 1
  1403. ImageFile = Metallic\TaskBandButtonNoEdgeVertical.bmp
  1404. ImageCount = 6
  1405. ImageLayout = vertical
  1406. Transparent = True
  1407. FillColorHint = 177 183 187; Average background color (grey)
  1408. [TaskBarVert::Toolbar.DropdownButton]
  1409. BgType = ImageFile
  1410. SizingType = Stretch
  1411. SizingMargins = 4, 4, 15, 3
  1412. ContentMargins = 1, 1, 1, 1
  1413. ImageFile = Metallic\TaskBandButtonNoEdgeVertical.bmp
  1414. ImageCount = 6
  1415. ImageLayout = vertical
  1416. Transparent = True
  1417. FillColorHint = 177 183 187; ; Average background color (grey)
  1418. [TaskBar::Rebar]
  1419. BgType = None
  1420. Font= ##Tahoma8
  1421. TextColor = 0 0 0
  1422. [TaskBar::Rebar.Band]
  1423. BgType = None
  1424. [TaskBar::Rebar.Gripper]
  1425. BgType = ImageFile
  1426. SizingType = Tile
  1427. SizingMargins = 0, 0, 6, 4
  1428. ContentMargins = 2, 1, 0, 0
  1429. ImageFile = Metallic\TaskbarGripper.bmp
  1430. ImageCount = 1
  1431. Transparent = True
  1432. TransparentColor= 255 0 255
  1433. FillColorHint = 119 119 92; Gripper dot color (dark grey)
  1434. [TaskBar::Rebar.GripperVert]
  1435. BgType = ImageFile
  1436. SizingType = Tile
  1437. SizingMargins = 4, 6, 0, 0
  1438. ContentMargins = 0, 0, 2, 1
  1439. ImageFile = Metallic\TaskbarGripperVertical.bmp
  1440. ImageCount = 1
  1441. Transparent = True
  1442. TransparentColor= 255 0 255
  1443. FillColorHint = 119 119 92; Gripper dot color (dark grey)
  1444. [TaskBar::Rebar.Chevron]
  1445. BgType = ImageFile
  1446. SizingType = Stretch
  1447. SizingMargins = 4, 4, 16, 8
  1448. ContentMargins = 0, 0, 0, 10
  1449. ImageFile = Metallic\TaskBandButtonNoEdge.bmp
  1450. ImageCount = 6
  1451. ImageLayout = vertical
  1452. Transparent = True
  1453. GlyphType = ImageGlyph
  1454. GlyphImageFile = Metallic\TaskbarChevron.bmp
  1455. GlyphTransparent= true
  1456. VAlign = Top
  1457. FillColorHint = 255 255 255; Overflow glyph color (white)
  1458. [TaskBar::Rebar.ChevronVert]
  1459. BgType = ImageFile
  1460. SizingType = Stretch
  1461. SizingMargins = 4, 4, 15, 3
  1462. ContentMargins = 0, 0, 0, 0
  1463. ImageFile = Metallic\TaskBandButtonNoEdgeVertical.bmp
  1464. ImageCount = 6
  1465. ImageLayout = vertical
  1466. Transparent = True
  1467. GlyphType = ImageGlyph
  1468. GlyphImageFile = Metallic\TaskbarChevronVert.bmp
  1469. GlyphTransparent= true
  1470. FillColorHint = 255 255 255; Overflow glyph color (white)
  1471. TransparentColor= 255 0 255
  1472. [TaskBar.BackgroundBottom]
  1473. BgType = ImageFile
  1474. SizingType = Tile
  1475. SizingMargins = 0, 0, 17, 12
  1476. ImageFile = Metallic\TaskbarBackground.bmp
  1477. ImageCount = 1
  1478. FillColorHint = 168 169 191; Average background color (grey)
  1479. [TaskBar.SizingBarBottom]
  1480. BgType = ImageFile
  1481. SizingType = Tile
  1482. ImageFile = Metallic\TaskbarSizingBarBottom.bmp
  1483. ImageCount = 1
  1484. FillColorHint = 166 167 193; Average color (grey)
  1485. [TaskBar.BackgroundLeft]
  1486. BgType = ImageFile
  1487. SizingType = Tile
  1488. SizingMargins = 17, 12, 0, 0
  1489. ImageFile = Metallic\TaskbarBackgroundVertical.bmp
  1490. ImageCount = 1
  1491. FillColorHint = 177 183 187; Average background color (grey)
  1492. [TaskBar.SizingBarLeft]
  1493. BgType = ImageFile
  1494. SizingType = Tile
  1495. ImageFile = Metallic\TaskbarSizingBarLeft.bmp
  1496. ImageCount = 1
  1497. FillColorHint = 166 167 193; Average color (grey)
  1498. [TaskBar.BackgroundTop]
  1499. BgType = ImageFile
  1500. SizingType = Tile
  1501. SizingMargins = 0, 0, 17, 12
  1502. ImageFile = Metallic\TaskbarBackground.bmp
  1503. ImageCount = 1
  1504. FillColorHint = 177 183 187; Average background color (grey)
  1505. [TaskBar.SizingBarTop]
  1506. BgType = ImageFile
  1507. SizingType = Tile
  1508. ImageFile = Metallic\TaskbarSizingBarTop.bmp
  1509. ImageCount = 1
  1510. FillColorHint = 166 167 193; Average color (gret)
  1511. [TaskBar.BackgroundRight]
  1512. BgType = ImageFile
  1513. SizingType = Tile
  1514. SizingMargins = 17, 12, 0, 0
  1515. ImageFile = Metallic\TaskbarBackgroundVertical.bmp
  1516. ImageCount = 1
  1517. FillColorHint = 177 183 187; Average background color (grey)
  1518. [TaskBar.SizingBarRight]
  1519. BgType = ImageFile
  1520. SizingType = Stretch
  1521. ImageFile = Metallic\TaskbarSizingBarRight.bmp
  1522. ImageCount = 1
  1523. FillColorHint = 166 167 193; Average color (grey)
  1524. ;-------------- Taskband specific --------------
  1525. [TaskBand.FlashButton]
  1526. BgType = ImageFile
  1527. SizingType = Stretch
  1528. SizingMargins = 17, 6, 12, 12
  1529. ContentMargins = 0, 0, 4, 4
  1530. ImageFile = Metallic\TaskBandFlashButton.bmp
  1531. ImageCount = 1
  1532. ImageLayout = vertical
  1533. Transparent = True
  1534. FillColorHint = 218 219 229; Average background color (grey)
  1535. AccentColorHint = 255 192 91; Attention hilite color (orange)
  1536. TransparentColor= 255 0 255
  1537. [TaskBand.FlashButtonGroupMenu]
  1538. BgType = ImageFile
  1539. SizingType = Stretch
  1540. SizingMargins = 17, 5, 12, 7
  1541. ContentMargins = 0, 0, 4, 4
  1542. ImageFile = Metallic\TaskBandFlashButtonGroupMenu.bmp
  1543. ImageCount = 1
  1544. Transparent = True
  1545. FillColorHint = 218 219 229; Average background color (grey)
  1546. AccentColorHint = 255 192 91; Attention hilite color (orange)
  1547. TransparentColor= 255 0 0
  1548. [TaskBand.GroupCount]
  1549. Font= ##Tahoma8Bold
  1550. TextColor = 255 116 66
  1551. [TaskBand::Toolbar]
  1552. BgType = None
  1553. Font= ##Tahoma8
  1554. TextColor = 64 64 64
  1555. [TaskBand::Toolbar(checked)]
  1556. TextColor = 255 255 255
  1557. [TaskBand::Toolbar(pressed)]
  1558. TextColor = 255 255 255
  1559. [TaskBand::Toolbar(hotchecked)]
  1560. TextColor = 255 255 255
  1561. [TaskBand::Toolbar.Button]
  1562. BgType = ImageFile
  1563. SizingType = Stretch
  1564. SizingMargins = 17, 5, 15, 8
  1565. ContentMargins = 0, 4, 4, 4
  1566. ImageFile = Metallic\TaskBandButton.bmp
  1567. ImageCount = 6
  1568. ImageLayout = vertical
  1569. Transparent = True
  1570. FillColorHint = 218 219 229; Average background color (grey)
  1571. [TaskBand::Toolbar.DropdownButton]
  1572. BgType = ImageFile
  1573. SizingType = Stretch
  1574. SizingMargins = 17, 5, 15, 8
  1575. ContentMargins = 0, 4, 4, 4
  1576. ImageFile = Metallic\TaskBandButton.bmp
  1577. ImageCount = 6
  1578. ImageLayout = vertical
  1579. Transparent = True
  1580. FillColorHint = 218 219 229; Average background color (grey)
  1581. [TaskBandVert::Toolbar]
  1582. BgType = None
  1583. Font= ##Tahoma8
  1584. TextColor = 0 0 0
  1585. [TaskBandVert::Toolbar(checked)]
  1586. TextColor = 255 255 255
  1587. [TaskBandVert::Toolbar(pressed)]
  1588. TextColor = 255 255 255
  1589. [TaskBandVert::Toolbar(hotchecked)]
  1590. TextColor = 255 255 255
  1591. [TaskBandVert::Toolbar.Button]
  1592. BgType = ImageFile
  1593. SizingType = Stretch
  1594. SizingMargins = 16, 7, 12, 6
  1595. ContentMargins = 0, 4, 4, 4
  1596. ImageFile = Metallic\TaskBandButtonVertical.bmp
  1597. ImageCount = 6
  1598. ImageLayout = vertical
  1599. Transparent = True
  1600. FillColorHint = 218 219 229; Average background color (grey)
  1601. [TaskBandVert::Toolbar.DropdownButton]
  1602. BgType = ImageFile
  1603. SizingType = Stretch
  1604. SizingMargins = 16, 7, 12, 6
  1605. ContentMargins = 0, 4, 4, 4
  1606. ImageFile = Metallic\TaskBandButtonVertical.bmp
  1607. ImageCount = 6
  1608. ImageLayout = vertical
  1609. Transparent = True
  1610. FillColorHint = 218 219 229; Average background color (grey)
  1611. [TaskBand::ScrollBar.ArrowBtn]
  1612. BgType = ImageFile
  1613. SizingMargins = 5, 5, 5, 5
  1614. ContentMargins = 0, 0, 0, 0
  1615. SizingType = Stretch
  1616. ImageFile = Metallic\TaskbandScrollArrows.bmp
  1617. ImageCount = 16
  1618. ImageLayout = Vertical
  1619. GlyphType = ImageGlyph
  1620. GlyphImageFile = Metallic\TaskBandScrollArrowGlyphs.bmp
  1621. GlyphTransparent = True
  1622. FillColorHint = 119 119 92; Average background color (dark grey)
  1623. [TaskBand::Scrollbar.ThumbBtnHorz]
  1624. BgType = ImageFile
  1625. SizingMargins = 5, 5, 5, 5
  1626. ContentMargins = 4, 4, 0, 0
  1627. ImageFile = Metallic\TaskBandScrollThumbHorizontal.bmp
  1628. ImageCount = 4
  1629. ImageLayout = Vertical
  1630. FillColorHint = 119 119 92; Average background color (dark grey)
  1631. ;A visual element in the middle of the scrollbar thumb
  1632. [TaskBand::Scrollbar.GripperHorz]
  1633. BgType = ImageFile
  1634. SizingType = TrueSize
  1635. ImageFile = Metallic\TaskBandScrollThumbGripperHorizontal.BMP
  1636. imagelayout = vertical
  1637. Transparent = True
  1638. ImageCount = 4
  1639. FillColorHint = 177 183 187; Thumb gripper lighter color (grey)
  1640. ; Scrollbar Thumb (vertical)
  1641. [TaskBand::Scrollbar.ThumbBtnVert]
  1642. BgType = ImageFile
  1643. SizingMargins = 5, 5, 5, 5
  1644. ContentMargins = 0, 0, 4, 4
  1645. ImageFile = Metallic\TaskBandScrollThumbVertical.bmp
  1646. ImageCount = 4
  1647. ImageLayout = vertical
  1648. Transparent = True
  1649. TransparentColor= 255 0 255
  1650. ;A visual element in the middle of the scrollbar thumb
  1651. [TaskBand::Scrollbar.GripperVert]
  1652. BgType = ImageFile
  1653. SizingType = TrueSize
  1654. ImageFile = Metallic\TaskBandScrollThumbGripperVertical.BMP
  1655. ImageCount = 4
  1656. Transparent = True
  1657. ImageLayout = Vertical
  1658. FillColorHint = 177 183 187; Thumb gripper lighter color (grey)
  1659. ; Scrollbar Tracks (horizontal)
  1660. [TaskBand::Scrollbar.LowerTrackHorz]
  1661. BgType = imagefile
  1662. ImageFile = Metallic\TaskBandScrollShaftHorizontal.bmp
  1663. SizingMargins = 0, 0, 1, 1
  1664. ImageCount = 4
  1665. ImageLayout = Vertical
  1666. FillColorHint = 177 183 187; Average background color (grey)
  1667. [TaskBand::Scrollbar.UpperTrackHorz]
  1668. BgType = imagefile
  1669. ImageFile = Metallic\TaskBandScrollShaftHorizontal.bmp
  1670. SizingMargins = 0, 0, 1, 1
  1671. ImageCount = 4
  1672. ImageLayout = Vertical
  1673. FillColorHint = 240 241 245; Average background color (grey)
  1674. ; Scrollbar Tracks (vertical)
  1675. [TaskBand::Scrollbar.LowerTrackVert]
  1676. BgType = imagefile
  1677. ImageFile = Metallic\TaskBandScrollShaftVertical.bmp
  1678. SizingMargins = 1, 1, 0, 0
  1679. ImageCount = 4
  1680. ImageLayout = Vertical
  1681. FillColorHint = 240 241 245; Average background color (grey)
  1682. [TaskBand::Scrollbar.UpperTrackVert]
  1683. BgType = imagefile
  1684. ImageFile = Metallic\TaskBandScrollShaftVertical.bmp
  1685. SizingMargins = 1, 1, 0, 0
  1686. ImageCount = 4
  1687. ImageLayout = Vertical
  1688. FillColorHint = 240 241 245; Average background color (grey)
  1689. ;-------------- Taskband Group Menu specific --------------
  1690. [TaskBandGroupMenu::Toolbar]
  1691. BgType = ImageFile
  1692. ImageFile = Metallic\TaskBandBackground.bmp
  1693. SizingType = Tile
  1694. SizingMargins = 3, 3, 3, 3
  1695. ContentMargins = 9, 0, 0, 0
  1696. Font= ##Tahoma8
  1697. TextColor = 0 0 0
  1698. FillColorHint = 177 183 187; Average background color (grey)
  1699. AccentColorHint = 255 199 60; Menu top hilite color (orange)
  1700. [TaskBandGroupMenu::Toolbar.Button]
  1701. BgType = ImageFile
  1702. SizingType = stretch
  1703. SizingMargins = 3, 3, 0, 0
  1704. ContentMargins = 9, 0, 3, 3
  1705. ImageFile = Metallic\TaskBandHover.bmp
  1706. ImageCount = 3
  1707. ImageLayout = vertical
  1708. Transparent = True
  1709. TransparentColor= 255 0 0
  1710. ;-------------- Tray Notify specific --------------
  1711. [TrayNotify::Toolbar]
  1712. BgType = None
  1713. [TrayNotify::Toolbar.Button]
  1714. BgType = None
  1715. [TrayNotifyHoriz::TrayNotify.Background]
  1716. BgType = ImageFile
  1717. SizingType = Stretch
  1718. SizingMargins = 34, 10, 12, 12
  1719. ContentMargins = 19, 7, 0, 0
  1720. ImageFile = Metallic\TaskbarTray.bmp
  1721. ImageCount = 1
  1722. Transparent = True
  1723. TransparentColor= 255 0 0
  1724. FillColorHint = 203 204 218; Average background color (grey)
  1725. [TrayNotifyHoriz::Button]
  1726. BgType = ImageFile
  1727. SizingType = TrueSize
  1728. ImageFile = Metallic\TrayChevronHorizontal.bmp
  1729. ImageCount = 3
  1730. Imagelayout = vertical
  1731. Transparent = True
  1732. TransparentColor= 255 0 255
  1733. [TrayNotifyHorizOpen::Button]
  1734. BgType = ImageFile
  1735. SizingType = TrueSize
  1736. ImageFile = Metallic\TrayChevronHorizontalOpen.bmp
  1737. ImageCount = 3
  1738. Imagelayout = vertical
  1739. Transparent = True
  1740. TransparentColor= 255 0 255
  1741. [TrayNotifyVert::TrayNotify.Background]
  1742. BgType = ImageFile
  1743. SizingType = Stretch
  1744. SizingMargins = 12, 12, 34, 10
  1745. ContentMargins = 0, 0, 19, 7
  1746. ImageFile = Metallic\TaskbarTrayVertical.bmp
  1747. ImageCount = 1
  1748. Transparent = True
  1749. TransparentColor= 255 0 0
  1750. FillColorHint = 203 204 218; Average background color (grey)
  1751. [TrayNotifyVert::Button]
  1752. BgType = ImageFile
  1753. SizingType = TrueSize
  1754. Transparent = True
  1755. ImageFile = Metallic\TrayChevronHorizontal.bmp
  1756. ImageCount = 3
  1757. Imagelayout = vertical
  1758. FillColorHint = 203 204 218; Average background color (grey)
  1759. [TrayNotifyVertOpen::Button]
  1760. BgType = ImageFile
  1761. SizingType = TrueSize
  1762. Transparent = True
  1763. ImageFile = Metallic\TrayChevronHorizontalOpen.bmp
  1764. ImageCount = 3
  1765. Imagelayout = vertical
  1766. FillColorHint = 203 204 218; Average background color (grey)
  1767. [TrayNotify::Clock]
  1768. Font= ##Tahoma8
  1769. TextColor = 0 0 0
  1770. ;-------------- Application-specific ------------------------
  1771. ;----------- places bar --------------------------------
  1772. ;The places toolbar in the fileopen/save dialog.
  1773. [Placesbar::Toolbar]
  1774. SizingMargins = 4, 4, 4, 4
  1775. ContentMargins = 0, 0, 0, 0
  1776. ImageFile = Metallic\PlaceBarBackground.bmp
  1777. bgtype = imagefile
  1778. imageCount = 1
  1779. sizingType = tile
  1780. FillColorHint = 204 241 245; Background color (light grey)
  1781. [Placesbar::Toolbar.Button]
  1782. SizingMargins = 4, 4, 4, 4
  1783. ContentMargins = 0, 0, 4, 2
  1784. ImageFile = Metallic\PlaceBarButtons.bmp
  1785. bgtype = imagefile
  1786. imagelayout = vertical
  1787. imageCount = 6
  1788. sizingType = stretch
  1789. transparent = true
  1790. FillColorHint = 255 255 255; Selected color (white)
  1791. BorderColorHint = 177 183 187; Outline color (grey)
  1792. ;----------- Explorer (IE) bar --------------------------------
  1793. [ExplorerBar]
  1794. BgType = BorderFill
  1795. FillType= VertGradient
  1796. GradientRatio1 = 0
  1797. GradientColor1 = 196 200 212
  1798. GradientRatio2 = 255
  1799. GradientColor2 = 177 179 200
  1800. BorderSize = 0
  1801. ContentMargins = 12, 12, 12, 12
  1802. [ExplorerBar.HeaderBackground]; Not used in IE 6
  1803. BgType = ImageFile
  1804. SizingType = Stretch
  1805. ImageFile = Metallic\ExplorerBarHeaderBackground.bmp
  1806. SizingMargins = 202, 1, 0, 0
  1807. Font= ##Tahoma8Bold
  1808. TextColor = 255 255 255
  1809. ContentMargins = 8, 8, 7, 7
  1810. FillColorHint = 177 183 187; Mid color of gradient (grey)
  1811. [ExplorerBar.HeaderClose]; Not used in IE 6
  1812. BgType = ImageFile
  1813. SizingType = TrueSize
  1814. ImageLayout = Vertical
  1815. ImageFile = Metallic\ExplorerBarHeaderClose.bmp
  1816. ImageCount = 3
  1817. Transparent = true
  1818. OffsetType = TopRight
  1819. Offset = -4, 4
  1820. FillColorHint = 138 168 229; Close box normal state (brick red)
  1821. AccentColorHint = 255 121 95; Close box rollover (brick red)
  1822. [ExplorerBar.HeaderPin]; Not used in IE 6
  1823. BgType = ImageFile
  1824. SizingType = TrueSize
  1825. ImageLayout = Vertical
  1826. ImageFile = Metallic\ExplorerBarHeaderPin.bmp
  1827. ImageCount = 6
  1828. Transparent = true
  1829. OffsetType = TopRight
  1830. Offset = -6, 4
  1831. FillColorHint = 177 183 187; Average pin color (grey)
  1832. [ExplorerBar.IEBarMenu]; Not used in IE 6
  1833. BgType = ImageFile
  1834. SizingType = TrueSize
  1835. ImageLayout = Vertical
  1836. ImageFile = Metallic\IE_PersonalBarMenu.bmp
  1837. ImageCount = 3
  1838. Transparent = true
  1839. OffsetType = TopRight
  1840. Offset = -3, 1
  1841. FillColorHint = 240 241 245; Average button background color (light grey blue)
  1842. BorderColorHint = 177 183 187; Border of button (grey)
  1843. [ExplorerBar.NormalGroupBackground]
  1844. BgType = ImageFile
  1845. FillColor = 240 241 245
  1846. BorderColor = 255 255 255
  1847. SizingType = Stretch
  1848. ImageFile = Metallic\NormalGroupBackground.bmp
  1849. SizingMargins = 3, 3, 3, 3
  1850. Font= ##Tahoma8
  1851. TextColor = 38 92 192
  1852. ContentMargins = 8, 8, 7, 7
  1853. [ExplorerBar.NormalGroupCollapse]
  1854. BgType = ImageFile
  1855. SizingType = TrueSize
  1856. ImageLayout = Vertical
  1857. ImageFile = Metallic\NormalGroupCollapse.bmp
  1858. ImageCount = 3
  1859. Transparent = true
  1860. OffsetType = TopRight
  1861. Offset = -3, 1
  1862. FillColorHint = 240 241 245; Average button background color (light grey)
  1863. BorderColorHint = 177 183 187; Border of button (grey)
  1864. [ExplorerBar.NormalGroupExpand]
  1865. BgType = ImageFile
  1866. SizingType = TrueSize
  1867. ImageLayout = Vertical
  1868. ImageFile = Metallic\NormalGroupExpand.bmp
  1869. ImageCount = 3
  1870. Transparent = true
  1871. OffsetType = TopRight
  1872. Offset = -3, 1
  1873. FillColorHint = 240 241 245; Average button background color (light grey)
  1874. BorderColorHint = 177 183 187; Border of button (grey)
  1875. [ExplorerBar.NormalGroupHead]
  1876. BgType = ImageFile
  1877. SizingType = Stretch
  1878. ImageFile = Metallic\NormalGroupHead.bmp
  1879. SizingMargins = 3, 106, 3, 1
  1880. Transparent = true
  1881. Font= ##Tahoma8Bold
  1882. TextColor = 38 92 192
  1883. ContentMargins = 8, 8, 7, 7
  1884. FillColorHint = 246 246 246; Lighter side of gradient (very light)
  1885. [ExplorerBar.SpecialGroupBackground]
  1886. BgType = ImageFile
  1887. SizingType = Stretch
  1888. ImageFile = Metallic\SpecialGroupBackground.bmp
  1889. SizingMargins = 3, 3, 3, 3
  1890. Font= ##Tahoma8
  1891. TextColor = 38 92 192
  1892. ContentMargins = 8, 8, 7, 7
  1893. FillColorHint = 246 246 246; Background color (very light grey)
  1894. [ExplorerBar.SpecialGroupCollapse]
  1895. BgType = ImageFile
  1896. SizingType = TrueSize
  1897. ImageLayout = Vertical
  1898. ImageFile = Metallic\SpecialGroupCollapse.bmp
  1899. ImageCount = 3
  1900. Transparent = true
  1901. OffsetType = TopRight
  1902. Offset = -3, 1
  1903. FillColorHint = 119 119 92; Average background color (dark grey)
  1904. BorderColorHint = 119 119 92; Edge color (dark grey)
  1905. [ExplorerBar.SpecialGroupExpand]
  1906. BgType = ImageFile
  1907. SizingType = TrueSize
  1908. ImageLayout = Vertical
  1909. ImageFile = Metallic\SpecialGroupExpand.bmp
  1910. ImageCount = 3
  1911. Transparent = true
  1912. OffsetType = TopRight
  1913. Offset = -3, 1
  1914. FillColorHint = 119 119 92; Average background color (dark grey)
  1915. BorderColorHint = 119 119 92; Edge color (dark grey)
  1916. [ExplorerBar.SpecialGroupHead]
  1917. BgType = ImageFile
  1918. SizingType = Stretch
  1919. ImageFile = Metallic\SpecialGroupHead.bmp
  1920. SizingMargins = 3, 106, 3, 1
  1921. Transparent = true
  1922. Font= ##Tahoma8Bold
  1923. TextColor = 255 255 255
  1924. FillColor = 119 119 146
  1925. ContentMargins = 8, 8, 7, 7
  1926. [ExplorerBar::Rebar]; Not used in IE 6
  1927. bgtype = imagefile
  1928. sizingtype = stretch
  1929. ImageFile = Metallic\ExplorerBarToolbarBackground.bmp
  1930. sizingmargins = 0, 0, 0, 4
  1931. Font= ##Tahoma8
  1932. TextColor = 127 124 115
  1933. FillColorHint = 246 246 246; (very light grey)
  1934. [ExplorerBar::Rebar.Band]; Not used in IE 6
  1935. bgtype = none
  1936. ContentMargins = 2, 0, 0, 0
  1937. [ExplorerBar::Rebar.Gripper]; Not used in IE 6
  1938. bgtype = imagefile
  1939. SizingMargins = 0, 0, 6, 4
  1940. ContentMargins = 3, 0, 0, 0
  1941. ImageFile = Metallic\Gripper.bmp
  1942. sizingType = Tile
  1943. Transparent = true
  1944. TransparentColor= 255 0 0
  1945. FillColorHint = 119 119 92; Gripper dot color (dark grey)
  1946. [ExplorerBar::Rebar.GripperVert]; Not used in IE 6
  1947. bgtype = imagefile
  1948. SizingMargins = 9, 8, 0, 0
  1949. ImageFile = Metallic\GripperVert.bmp
  1950. sizingType = Tile
  1951. Transparent = true
  1952. TransparentColor= 255 0 0
  1953. FillColorHint = 119 119 92; Gripper dot color (dark grey)
  1954. [ExplorerBar::Rebar.Chevron]; Not used in IE 6
  1955. SizingMargins = 4, 4, 4, 4
  1956. ContentMargins = 0, 0, 0, 0
  1957. ImageFile = Metallic\ExplorerBarToolbarButtons.bmp
  1958. bgtype = imagefile
  1959. imagelayout = vertical
  1960. imageCount = 6
  1961. sizingType = Stretch
  1962. Transparent = true
  1963. GlyphType = ImageGlyph
  1964. GlyphImageFile = Metallic\Chevron.bmp
  1965. GlyphTransparent= true
  1966. VAlign = Top
  1967. FillColorHint = 0 0 0; Glyph color (black)
  1968. [ExplorerBar::Rebar.ChevronVert]; Not used in IE 6
  1969. SizingMargins = 4, 4, 4, 4
  1970. ContentMargins = 0, 0, 0, 0
  1971. ImageFile = Metallic\ExplorerBarToolbarButtons.bmp
  1972. bgtype = imagefile
  1973. imagelayout = vertical
  1974. imageCount = 6
  1975. sizingType = Stretch
  1976. Transparent = true
  1977. GlyphType = ImageGlyph
  1978. GlyphImageFile = Metallic\Chevron.bmp
  1979. GlyphTransparent= true
  1980. VAlign = Top
  1981. FillColorHint = 0 0 0; Glyph color (black)
  1982. [ExplorerBar::Toolbar.Button]; Not used in IE 6
  1983. SizingMargins = 4, 4, 4, 4
  1984. ContentMargins = 0, 0, 0, 0
  1985. ImageFile = Metallic\ExplorerBarToolbarButtons.bmp
  1986. bgtype = imagefile
  1987. imagelayout = vertical
  1988. imageCount = 6
  1989. sizingType = Stretch
  1990. Transparent = true
  1991. TransparentColor= 255 0 255
  1992. FillColorHint = 240 241 245; Average fill color (light grey)
  1993. BorderColorHint = 177 183 187; Edge color (blue)
  1994. [ExplorerBar::Toolbar.DropdownButton]; Not used in IE 6
  1995. SizingMargins = 4, 4, 4, 4
  1996. ContentMargins = 0, 0, 0, 0
  1997. ImageFile = Metallic\ExplorerBarToolbarButtons.bmp
  1998. bgtype = imagefile
  1999. imagelayout = vertical
  2000. imageCount = 6
  2001. sizingType = Stretch
  2002. Transparent = true
  2003. TransparentColor= 255 0 255
  2004. FillColorHint = 238 243 248; Average fill color (light blue grey)
  2005. BorderColorHint = 177 183 187; Edge color (blue)
  2006. [ExplorerBar::Toolbar.SplitButton]; Not used in IE 6
  2007. SizingMargins = 4, 2, 4, 4
  2008. ImageFile = Metallic\ExplorerBarToolbarButtonsSplit.bmp
  2009. bgtype = imagefile
  2010. imagelayout = vertical
  2011. imageCount = 6
  2012. sizingType = Stretch
  2013. Transparent = true
  2014. TransparentColor= 255 0 255
  2015. FillColorHint = 240 241 245; Average fill color (light grey)
  2016. BorderColorHint = 177 183 187; Edge color (blue)
  2017. [ExplorerBar::Toolbar.SplitButtonDropdown]; Not used in IE 6
  2018. SizingMargins = 2, 4, 4, 4
  2019. ImageFile = Metallic\ExplorerBarToolbarButtonsSplitDropdown.bmp
  2020. bgtype = imagefile
  2021. imagelayout = vertical
  2022. imageCount = 6
  2023. sizingType = Stretch
  2024. Transparent = true
  2025. TransparentColor= 255 0 255
  2026. GlyphType = ImageGlyph
  2027. GlyphImageFile = Metallic\ToolbarButtonsSplitDropdownGlyph.bmp
  2028. GlyphTransparent= true
  2029. FillColorHint = 240 241 245; Average fill color (light grey)
  2030. BorderColorHint = 177 183 187; Edge color (grey)
  2031. [ExplorerBar::Toolbar.Separator]; Not used in IE 6
  2032. SizingMargins = 5, 2, 2, 1
  2033. ImageFile = Metallic\Separator.bmp
  2034. bgtype = imagefile
  2035. imageCount = 1
  2036. sizingType = tile
  2037. Transparent = true
  2038. TransparentColor= 255 0 0
  2039. FillColorHint = 119 119 92; Separator line color (dark grey)
  2040. [ExplorerBar::Toolbar.SeparatorVert]; Not used in IE 6
  2041. SizingMargins = 2, 1, 5, 1
  2042. ImageFile = Metallic\SeparatorVert.bmp
  2043. bgtype = imagefile
  2044. imageCount = 1
  2045. sizingType = tile
  2046. Transparent = true
  2047. TransparentColor= 255 0 0
  2048. FillColorHint = 119 119 92; Separator line color (dark grey)