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.

1453 lines
33 KiB

  1. ;------------------------------------------
  2. ; file: Professional\default.ini
  3. ;------------------------------------------
  4. ;--------- Globals -------------------------
  5. [globals]
  6. ;--------- system metrics -------------------------------
  7. [SysMetrics]
  8. ;These colors effect the system metrics that are used whether or not a control is themed.
  9. Scrollbar = 235 235 228
  10. Window = 255 255 255
  11. MenuBar = 244 244 240
  12. Menu = 255 255 255
  13. Background = 0 78 152
  14. Btnface = 235 235 228
  15. Highlight = 49 106 197
  16. CaptionText = 255 255 255
  17. InactiveCaptionText = 192 192 192
  18. ActiveCaption = 82 151 249
  19. InactiveCaption = 44 96 178
  20. GradientActiveCaption = 53 115 214
  21. GradientInactiveCaption = 44 96 178
  22. CaptionBarHeight = 22
  23. CaptionBarWidth = 22
  24. SMCaptionBarHeight = 15
  25. SMCaptionBarWidth = 15
  26. CaptionFont = tahoma, 8, bold
  27. SmallCaptionFont = tahoma, 7, bold
  28. MenuFont = tahoma, 8
  29. StatusFont = tahoma, 8
  30. MsgBoxFont = tahoma, 8
  31. IConTitleFont = tahoma, 8
  32. ;HighlightText = 255 255 255
  33. ;MenuHilight = 49 106 197
  34. ;ActiveCaption
  35. ;InactiveCaption
  36. ;WindowFrame
  37. ;MenuText
  38. ;WindowText
  39. ;CaptionText
  40. ;ActiveBorder
  41. ;InactiveBorder
  42. ;AppWorkSpace
  43. ;Highlight
  44. ;HighlightText
  45. ;BtnShadow
  46. ;GrayText
  47. ;BtnText
  48. ;InactiveCaptionText
  49. ;BtnHighlight
  50. ;DkShadow3d
  51. ;Light3d
  52. ;InfoText
  53. ;InfoBk
  54. ;UnknownColor
  55. ;HotLight
  56. ;GradientActiveCaption
  57. ;GradientInactiveCaption
  58. ;The FlatMenus option allows the author to turn of the 3d border on menus
  59. FlatMenus = true
  60. ;This may allow authors to specify a theme matching stylesheet for Webviews, etc.
  61. CssName = cpwebvw.css
  62. ;Investigate what the xml file would do
  63. XmlName = default.xml
  64. ; this theme designed for 15-bit color and higher
  65. MinColorDepth = 15
  66. ;---------- buttons ---------------------------------
  67. ;Overall button class
  68. [button]
  69. ;Normal button
  70. [button.pushbutton]
  71. bgtype = imagefile
  72. sizingType = Tile
  73. ImageLayout = vertical
  74. ContentMargins = 4, 4, 2, 2
  75. SizingMargins = 4, 4, 9, 9
  76. ImageFile = buttonBlue.bmp
  77. imageCount = 5
  78. ;Makes text for button grey for the disabled state
  79. [button.pushbutton(disabled)]
  80. TextColor = 161 161 146
  81. ;Checkboxes, of course
  82. [button.checkbox]
  83. bgtype = imagefile
  84. sizingType = TrueSize
  85. ImageFile = checkboxBlue.bmp
  86. SizingMargins = 0, 0, 0, 0
  87. ContentMargins = 0, 0, 0, 0
  88. imageCount = 12
  89. ;Checkboxes can be disabled in various states, so each of the following entries sets the text
  90. ;to grey for the corresponding states.
  91. [button.checkbox(checkeddisabled)]
  92. TextColor = 161 161 146
  93. [button.checkbox(uncheckeddisabled)]
  94. TextColor = 161 161 146
  95. [button.checkbox(mixeddisabled)]
  96. TextColor = 161 161 146
  97. ;Radio buttons!
  98. [button.radiobutton]
  99. bgtype = imagefile
  100. transparent=true
  101. sizingType = TrueSize
  102. SizingMargins = 0, 0, 0, 0
  103. ContentMargins = 0, 0, 0, 0
  104. imageCount = 8
  105. ;----- the four sizes of radio buttons ----
  106. ImageSelectType = Dpi
  107. TrueSizeScalingType = Dpi
  108. ImageFile1 = RadioButton16.bmp
  109. ImageFile2 = RadioButton18.bmp
  110. ImageFile3 = RadioButton20.bmp
  111. ImageFile4 = RadioButton24.bmp
  112. MinDpi1 = 96
  113. MinDpi2 = 108
  114. MinDpi3 = 120
  115. MinDpi4 = 144
  116. ;Radio buttons can be disabled in various states, so each of the following entries sets the text
  117. ;to grey for the corresponding states.
  118. [button.radiobutton(checkeddisabled)]
  119. TextColor = 161 161 146
  120. [button.radiobutton(uncheckeddisabled)]
  121. TextColor = 161 161 146
  122. ;Not much a button, really. This is what's drawn around a group of controls
  123. [button.groupbox]
  124. TextColor = 118 161 202
  125. bgtype = imagefile
  126. SizingMargins = 4, 4, 4, 4
  127. sizingType = Tile
  128. ImageFile = GroupBoxBlueCurved.bmp
  129. ;BorderOnly means that the area inside the sizing margins is not drawn (so it won't
  130. ;draw on top of the controls it surrounds)
  131. borderOnly = true
  132. ;Sets the color of the group box text to grey
  133. ;[button.groupbox(disabled)]
  134. ;TextColor = 161 161 146
  135. ;----------- combobox --------------------------------
  136. ;Dropdown controls
  137. [Combobox]
  138. ; Globals for the entire control
  139. BgType = BorderFill
  140. BorderSize = 1
  141. FillColor = 255 255 255
  142. BorderColor = 100 100 100
  143. [Combobox(Hot)]
  144. ; Globals when the mouse is over the control
  145. BorderColor = 108 124 166
  146. [Combobox(Disabled)]
  147. ; Globals when the control is disabled
  148. BorderColor = 161 161 146
  149. FillColor = 235 235 228
  150. ;[Combobox::Edit]
  151. ;BgType=BorderFill
  152. ;BorderSize=0
  153. ;FillColor = 255 255 255
  154. ;[Combobox::Edit.EditText(Disabled)]
  155. ;FillColor = 235 235 228
  156. ;TextColor = 161 161 146
  157. ;The down pointing triangle button
  158. [Combobox.DropDownButton]
  159. BgType = imagefile
  160. SizingType = Stretch
  161. ImageFile = ComboButtonBlue.bmp
  162. SizingMargins = 1, 1, 1, 1
  163. ImageCount = 4
  164. ;----------- edit --------------------------------
  165. [edit]
  166. BgType = BorderFill
  167. BorderSize = 1
  168. [edit.edittext]
  169. BorderColor = 100 100 100
  170. [edit.edittext(Disabled)]
  171. BorderColor = 161 161 146
  172. [edit.edittext(Hot)]
  173. BorderColor = 108 124 166
  174. [edit.edittext(ReadOnly)]
  175. BorderColor = 161 161 146
  176. ;[edit.edittext(Assist)]
  177. ;FillColor = 0 0 255
  178. ;TextColor = 255 255 255
  179. ;--------- Scrollbar -------------------------
  180. [ScrollBar]
  181. ;The buttons, both horizontal and vertical in one strip
  182. ; Scrollbar Arrow Buttons
  183. [ScrollBar.ArrowBtn]
  184. BgType = ImageFile
  185. SizingMargins = 2, 2, 2, 2
  186. ImageFile = ScrollbarArrowsBlue.bmp
  187. ImageCount = 16
  188. ; Scrollbar Thumb (horizontal)
  189. [Scrollbar.ThumbBtnHorz]
  190. BgType = ImageFile
  191. SizingMargins = 3, 3, 3, 3
  192. ImageFile = hscrollThumbBlue.bmp
  193. ImageCount = 4
  194. ;A visual element in the middle of the scrollbar thumb
  195. [Scrollbar.GripperHorz]
  196. BgType = ImageFile
  197. SizingType = TrueSize
  198. ImageFile = hThumbGripper.bmp
  199. ImageCount = 4
  200. ; Scrollbar Thumb (vertical)
  201. [Scrollbar.ThumbBtnVert]
  202. BgType = ImageFile
  203. SizingMargins = 3, 3, 3, 3
  204. ImageFile = vscrollThumbBlue.bmp
  205. ImageCount = 4
  206. ;A visual element in the middle of the scrollbar thumb
  207. [Scrollbar.GripperVert]
  208. BgType = ImageFile
  209. SizingType = TrueSize
  210. ImageFile = vThumbGripper.bmp
  211. ImageCount = 4
  212. ; Scrollbar Tracks (horizontal)
  213. [Scrollbar.LowerTrackHorz]
  214. BgType = ImageFile
  215. SizingType = stretch
  216. ImageFile = hscrollShaftBlue.bmp
  217. ImageCount = 4
  218. [Scrollbar.UpperTrackHorz]
  219. BgType = ImageFile
  220. SizingType = stretch
  221. ImageFile = hscrollShaftBlue.bmp
  222. ImageCount = 4
  223. ; Scrollbar Tracks (vertical)
  224. [Scrollbar.LowerTrackVert]
  225. BgType = ImageFile
  226. SizingType = stretch
  227. ImageFile = vscrollShaftBlue.bmp
  228. ImageCount = 4
  229. [Scrollbar.UpperTrackVert]
  230. BgType = ImageFile
  231. SizingType = stretch
  232. ImageFile = vscrollShaftBlue.bmp
  233. ImageCount = 4
  234. ;----------- spin --------------------------------
  235. ;Spin buttons for incrmenting values in a field
  236. [spin]
  237. bgtype = imagefile
  238. sizingType = tile
  239. ImageFile = FieldOutlineBlue.bmp
  240. SizingMargins = 2, 2, 2, 2
  241. imageCount = 1
  242. [Spin.Up]
  243. bgtype = imagefile
  244. sizingType = stretch
  245. ImageFile = SpinUpBlue.bmp
  246. SizingMargins = 2, 2, 2, 2
  247. imageCount = 4
  248. [Spin.Down]
  249. bgtype = imagefile
  250. sizingType = stretch
  251. ImageFile = SpinDownBlue.bmp
  252. SizingMargins = 2, 2, 2, 2
  253. imageCount = 4
  254. [Spin.Uphorz]
  255. bgtype = imagefile
  256. sizingType = stretch
  257. ImageFile = SpinRightBlue.bmp
  258. SizingMargins = 2, 2, 2, 2
  259. imageCount = 4
  260. [Spin.Downhorz]
  261. bgtype = imagefile
  262. sizingType = stretch
  263. ImageFile = SpinLeftBlue.bmp
  264. SizingMargins = 2, 2, 2, 2
  265. imageCount = 4
  266. ;----------- rebar --------------------------------
  267. ;Rebar is a container for toolbars
  268. [Rebar]
  269. bgtype =BorderFill
  270. fillType = Solid
  271. FillColor = 244 244 240
  272. BorderSize = 0
  273. Font = Tahoma, 8
  274. TextColor = 0 0 0
  275. [Rebar.Band]
  276. bgtype =BorderFill
  277. fillType = Solid
  278. FillColor = 244 244 240
  279. BorderSize = 0
  280. [Rebar.Gripper]
  281. bgtype = imagefile
  282. SizingMargins = 1, 1, 10, 3
  283. ImageFile=GripperBlue.bmp
  284. sizingType = Tile
  285. [Rebar.GripperVert]
  286. bgtype = imagefile
  287. SizingMargins = 10, 3, 1, 1
  288. ImageFile=GripperVertBlue.bmp
  289. sizingType = Tile
  290. [Rebar.Chevron]
  291. BgType = ImageFile
  292. SizingType = Stretch
  293. SizingMargins = 1, 1, 1, 1
  294. ImageFile = ChevBlueBg.bmp
  295. ImageCount = 3
  296. GlyphType = ImageGlyph
  297. GlyphImageFile = Chevron.bmp
  298. ;----------- toolbar--------------------------------
  299. ;Button bars and menu bars in some applicatons
  300. [Toolbar]
  301. bgtype =BorderFill
  302. fillType = Solid
  303. FillColor = 244 244 240
  304. BorderSize = 0
  305. ;This should make the type when when a toolbar button is pressed, but it doesn't
  306. [Toolbar(Pressed)]
  307. TextColor= 255 255 255
  308. [Toolbar.Button]
  309. SizingMargins = 1, 1, 1, 1
  310. ContentMargins = 0, 0, 0, 0
  311. ImageFile=ToolbarButtonBlue.bmp
  312. bgtype = imagefile
  313. imageCount = 6
  314. sizingType = tile
  315. [Toolbar.Separator]
  316. SizingMargins = 5, 2, 2, 1
  317. ImageFile=Separator.bmp
  318. bgtype = imagefile
  319. imageCount = 1
  320. sizingType = tile
  321. [Toolbar.SeparatorVert]
  322. SizingMargins = 2, 1, 5, 1
  323. ImageFile=SeparatorVert.bmp
  324. bgtype = imagefile
  325. imageCount = 1
  326. sizingType = tile
  327. [Toolbar.DropdownButton]
  328. SizingMargins = 1, 1, 1, 1
  329. ContentMargins = 0, 0, 0, 0
  330. ImageFile=ToolbarButtonBlue.bmp
  331. bgtype = imagefile
  332. imageCount = 6
  333. sizingType = tile
  334. [Toolbar.SplitButton]
  335. SizingMargins = 1, 1, 1, 1
  336. ImageFile=ToolbarSplitButtonBlue.bmp
  337. bgtype = imagefile
  338. imageCount = 5
  339. sizingType = tile
  340. [Toolbar.SplitButtonDropdown]
  341. SizingMargins = 1, 1, 15, 1
  342. ImageFile=ToolbarSplitButtonDropdownBlue.bmp
  343. bgtype = imagefile
  344. imageCount = 5
  345. sizingType = tile
  346. ;----------- status--------------------------------
  347. ;The area at the bottom of a window containing miscellaneous status info
  348. ;The first is the container for the status sections
  349. [Status]
  350. bgtype =BorderFill
  351. FillColor = 235 235 228
  352. BorderColor = 235 235 228
  353. ;The individual status item backgrounds
  354. [Status.Pane]
  355. bgtype = imagefile
  356. SizingMargins = 4, 1, 1, 3
  357. ImageFile=StatusPane4.bmp
  358. imageCount = 1
  359. sizingType = Stretch
  360. ;The resize corner
  361. [Status.Gripper]
  362. ImageFile=ResizeGripBlue.bmp
  363. bgtype = imagefile
  364. imageCount = 2
  365. sizingType = trueSize
  366. ;----------- menu --------------------------------
  367. ;May be cut
  368. ;[Menu]
  369. ;bgType = borderFill
  370. ;fillType = Solid
  371. ;fillColor = 249 248 247
  372. ;borderSize = 1
  373. ;borderColor = 161 161 146
  374. ;[Menu.MenuItem]
  375. ;--item on a menu--
  376. ;bgtype = imagefile
  377. ;SizingMargins = 26, 0, 0, 0
  378. ;ContentMargins = 4, 0, 0, 0
  379. ;ImageFile=menuItemBlue.bmp
  380. ;imageCount = 1
  381. ;sizingType = Stretch
  382. ;bgType = borderFill
  383. ;fillType = Solid
  384. ;fillColor = 249 248 247
  385. ;BorderSize = 0
  386. ;[Menu.MenuDropDown]
  387. ;--item with a cascading menu--
  388. ;bgType = borderFill
  389. ;fillType = Solid
  390. ;fillColor = 249 248 247
  391. ;BorderSize = 0
  392. ;bgtype = imagefile
  393. ;SizingMargins = 26, 12, 0, 0
  394. ;ImageFile=menuItemBlue.bmp
  395. ;imageCount = 1
  396. ;sizingType = Stretch
  397. ;[Menu.MenuBarDropDown]
  398. ;--menu title in menubar--
  399. ;bgType = borderFill
  400. ;fillType = Solid
  401. ;fillColor = 235 235 228
  402. ;[Menu.MenuBarItem]
  403. ;--item on the menubar with no menu (rare)--
  404. ;bgType = borderFill
  405. ;fillType = Solid
  406. ;fillColor = 235 235 228
  407. ;[Menu.Chevron]
  408. ;SizingMargins = 0, 0, 0, 0
  409. ;ImageFile=MenuChevronBlue.bmp
  410. ;bgtype = imagefile
  411. ;imageCount = 1
  412. ;[Menu.Separator]
  413. ;SizingMargins = 37, 0, 0, 0
  414. ;ImageFile=MenuSeparatorLineBlue.bmp
  415. ;bgtype = imagefile
  416. ;imageCount = 1
  417. ;----------- list view --------------------------------
  418. ;Icon, list, details, etc.
  419. ;Too many problems to turn on currently
  420. ;[ListView]
  421. ;FillColor= 0 0 0
  422. ;[ListView.ListGroup]
  423. ;TextColor = 255 0 255
  424. ;ImageFile=ListGroupBlue.bmp
  425. ;bgtype =imagefile
  426. ;sizingType = Stretch
  427. ;[ListView.ListItem]
  428. ;bgtype =BorderFill
  429. ;TextColor = 128 0 0
  430. ;FillColor= 255 255 255
  431. ;sizingType = Stretch
  432. ;[ListView.ListItem(Hot)]
  433. ;bgtype =BorderFill
  434. ;TextColor = 0 0 0
  435. ;FillColor = 255 211 225
  436. ;[ListView.ListItem(Selected)]
  437. ;bgtype =BorderFill
  438. ;TextColor = 255 255 255
  439. ;FillColor = 108 124 166
  440. ;[ListView.ListDetail]
  441. ;TextColor = 0 0 0
  442. ;FillColor = 210 213 206
  443. ;bgtype =BorderFill
  444. ;[ListView.ListSortedDetail]
  445. ;TextColor = 114 129 171
  446. ;FillColor = 255 0 255
  447. ;bgtype =BorderFill
  448. ;----------- header --------------------------------
  449. ;The area at the top of a list, with clickable headers for sort order
  450. [Header]
  451. FillColor = 219 219 206
  452. BorderSize = 0
  453. bgtype =BorderFill
  454. [Header.HeaderItem]
  455. bgtype = imagefile
  456. SizingMargins = 1, 1, 1, 1
  457. ImageFile=ListViewHeaderBlue.bmp
  458. imageCount=5
  459. sizingType = tile
  460. [Header.HeaderSortArrow]
  461. bgtype = imagefile
  462. ImageFile=HeaderSortArrow.bmp
  463. imageCount=2
  464. sizingType = truesize
  465. transparent=true
  466. transparentcolor=255 0 255
  467. ;----------- progress --------------------------------
  468. [Progress]
  469. ProgressChunkSize = 6
  470. ProgressSpaceSize = 2
  471. [Progress.Bar]
  472. bgtype = imagefile
  473. ImageFile = ProgressTrackBlue.bmp
  474. sizingMargins = 3, 3, 3, 2
  475. SizingType = tile
  476. [Progress.BarVert]
  477. bgtype = imagefile
  478. ImageFile = ProgressTrackBlue.bmp
  479. sizingMargins = 3, 3, 3, 2
  480. SizingType = tile
  481. [Progress.Chunk]
  482. bgtype = BorderFill
  483. FillColor = 108 124 166
  484. BorderSize = 0
  485. [Progress.ChunkVert]
  486. bgtype = BorderFill
  487. FillColor = 108 124 166
  488. BorderSize = 0
  489. ;----------- tab --------------------------------
  490. [Tab]
  491. bgtype = imagefile
  492. ImageFile=TabBackgroundBlue.bmp
  493. ;This image shows in the dark strip behind the tabs themselves
  494. sizingMargins = 0, 2, 1, 0
  495. SizingType = stretch
  496. imagecount = 1
  497. ;The whole content area of a tab page
  498. [Tab.Pane]
  499. bgtype = imagefile
  500. ImageFile=TabPaneBlue.bmp
  501. sizingMargins = 3, 3, 3, 3
  502. SizingType = tile
  503. imagecount = 1
  504. [Tab.TabItem]
  505. SizingMargins = 4, 4, 4, 4
  506. ContentMargins = 0, 0, 0, 0
  507. bgtype=imagefile
  508. ImageFile=tabItemBlue.bmp
  509. imagecount=5
  510. [Tab.TabItemLeftEdge]
  511. SizingMargins = 4, 4, 4, 4
  512. ContentMargins = 0, 0, 0, 0
  513. bgtype=imagefile
  514. ImageFile=tabItemLeftBlue.bmp
  515. imagecount=5
  516. [Tab.TabItemRightEdge]
  517. SizingMargins = 4, 4, 4, 4
  518. ContentMargins = 0, 0, 0, 0
  519. bgtype=imagefile
  520. ImageFile=tabItemRightBlue.bmp
  521. imagecount=5
  522. [Tab.TabItemBothEdge]
  523. SizingMargins = 4, 4, 4, 4
  524. ContentMargins = 0, 0, 0, 0
  525. bgtype=imagefile
  526. ImageFile=tabItemLeftBlue.bmp
  527. imagecount=5
  528. [Tab.TopTabItem]
  529. SizingMargins = 4, 4, 4, 4
  530. ContentMargins = 0, 0, 0, 0
  531. bgtype=imagefile
  532. ImageFile=tabItemTopBlue.bmp
  533. imagecount=5
  534. [Tab.TopTabItemLeftEdge]
  535. SizingMargins = 4, 4, 4, 4
  536. ContentMargins = 0, 0, 0, 0
  537. bgtype=imagefile
  538. ImageFile=tabItemTopLeftBlue.bmp
  539. imagecount=5
  540. [Tab.TopTabItemRightEdge]
  541. SizingMargins = 4, 4, 4, 4
  542. ContentMargins = 0, 0, 0, 0
  543. bgtype=imagefile
  544. ImageFile=tabItemTopRightBlue.bmp
  545. imagecount=5
  546. [Tab.TopTabItemBothEdge]
  547. SizingMargins = 4, 4, 4, 4
  548. ContentMargins = 0, 0, 0, 0
  549. bgtype=imagefile
  550. ImageFile=tabItemTopLeftBlue.bmp
  551. imagecount=5
  552. [Tab.Body]
  553. bgType = borderFill
  554. fillType = Solid
  555. fillColor = 243 243 239
  556. bordersize = 0
  557. ;----------- trackbar --------------------------------
  558. ;Volume sliders, etc.
  559. [TrackBar]
  560. bgType = borderFill
  561. fillType = Solid
  562. fillColor = 235 235 228
  563. bordersize = 1
  564. borderColor = 235 235 228
  565. ;The movable part of a horizontal slider (TBS_BOTH style)
  566. [TrackBar.Thumb]
  567. bgtype=imagefile
  568. ImageFile=SliderThumbBlue.bmp
  569. imagecount=5
  570. SizingMargins = 3, 3, 3, 3
  571. sizingtype = tile
  572. ;The movable part of a horizontal slider (TBS_TOP style)
  573. [TrackBar.ThumbTop]
  574. bgtype=imagefile
  575. ImageFile=SliderThumbTopBlue.bmp
  576. imagecount=5
  577. transparent=true
  578. SizingMargins = 3, 3, 8, 4
  579. sizingtype = tile
  580. transparentcolor= 255 0 255
  581. ;The movable part of a horizontal slider (TBS_BOTTOM style)
  582. [TrackBar.ThumbBottom]
  583. bgtype=imagefile
  584. ImageFile=SliderThumbBottomBlue.bmp
  585. imagecount=5
  586. transparent=true
  587. SizingMargins = 3, 3, 4, 8
  588. sizingtype = tile
  589. transparentcolor= 255 0 255
  590. ;The movable part of a vertical slider (TBS_BOTH style)
  591. [TrackBar.ThumbVert]
  592. bgtype=imagefile
  593. ImageFile=SliderThumbVertBlue.bmp
  594. SizingMargins = 4, 4, 3, 2
  595. sizingtype = tile
  596. imagecount=5
  597. ;The movable part of a vertical slider (TBS_LEFT style)
  598. [TrackBar.ThumbLeft]
  599. bgtype=imagefile
  600. ImageFile=SliderThumbLeftBlue.bmp
  601. SizingMargins = 8, 4, 3, 2
  602. sizingtype = tile
  603. imagecount=5
  604. transparent=true
  605. transparentcolor= 255 0 255
  606. ;The movable part of a vertical slider (TBS_RIGHT style)
  607. [TrackBar.ThumbRight]
  608. bgtype=imagefile
  609. ImageFile=SliderThumbRightBlue.bmp
  610. SizingMargins = 4, 8, 3, 2
  611. sizingtype = tile
  612. imagecount=5
  613. transparent=true
  614. transparentcolor= 255 0 255
  615. ;The track along which a slidermoves
  616. [TrackBar.Track]
  617. bgtype=imagefile
  618. ImageFile=sliderTrackBlue.bmp
  619. imagecount=1
  620. sizingtype = stretch
  621. SizingMargins = 1, 1, 1, 1
  622. ;The vertical track along which a slider moves
  623. [TrackBar.TrackVert]
  624. bgtype=imagefile
  625. ImageFile=sliderTrackBlue.bmp
  626. imagecount=1
  627. sizingtype = stretch
  628. SizingMargins = 1, 1, 1, 1
  629. ;Set the color of the tickmarks drawn for the slider
  630. [TrackBar.Tics]
  631. color=161 161 146
  632. ;Set the color of the tickmarks drawn for the vertical slider
  633. [TrackBar.TicsVert]
  634. color=161 161 146
  635. ;----------- tooltip --------------------------------
  636. ;Set the color or image background for tooltips
  637. ;[Tooltip]
  638. ;bgtype = imagefile
  639. ;imagefile = TooltipBlue.bmp
  640. ;sizingtype = tile
  641. ;SizingMargins = 4, 1, 1, 1
  642. ;ContentMargins = 8, 4, 4, 4
  643. ;font = Verdana, 8
  644. ;textcolor= 75 75 75
  645. ;[Tooltip.Balloon]
  646. ;color = 251 251 242
  647. ;[Tooltip.BalloonTitle]
  648. ;font= tahoma, 9, bold
  649. ;-------------- Windows ------------------------
  650. [Window]
  651. BgType = ImageFile
  652. Transparent = false
  653. [Window.FrameLeft]
  654. ImageFile = frameLeft.bmp
  655. SizingMargins = 2, 1, 0, 3
  656. ContentMargins = 2, 1, 0, 3
  657. SizingType = stretch
  658. ImageCount = 3
  659. Transparent = FALSE
  660. Borderonly = FALSE
  661. [Window.FrameRight]
  662. ImageFile = frameLeft.bmp
  663. SizingMargins = 1, 2, 0, 3
  664. ContentMargins = 1, 2, 0, 3
  665. SizingType = stretch
  666. ImageCount = 3
  667. Transparent = FALSE
  668. Borderonly = FALSE
  669. [Window.FrameBottom]
  670. ImageFile = frameBottom.bmp
  671. SizingMargins = 3, 3, 1, 2
  672. ContentMargins = 3, 3, 1, 2
  673. SizingType = stretch
  674. ImageCount = 3
  675. Transparent = FALSE
  676. Borderonly = FALSE
  677. ;A frame for palette Windows--type entry window in MSPaint for instance.
  678. [Window.SmallFrameLeft]
  679. ImageFile = toolframeLeft.bmp
  680. SizingMargins = 1, 1, 1, 1
  681. ContentMargins = 1, 1, 1, 1
  682. SizingType = stretch
  683. ImageCount = 3
  684. Transparent = FALSE
  685. Borderonly = FALSE
  686. [Window.SmallFrameRight]
  687. ImageFile = toolframeRight.bmp
  688. SizingMargins = 1, 1, 1, 1
  689. ContentMargins = 1, 1, 1, 1
  690. SizingType = stretch
  691. ImageCount = 3
  692. Transparent = FALSE
  693. Borderonly = FALSE
  694. [Window.SmallFrameBottom]
  695. ImageFile = toolframeBottom.bmp
  696. SizingMargins = 5, 5, 1, 1
  697. ContentMargins = 5, 5, 1, 1
  698. SizingType = stretch
  699. ImageCount = 3
  700. Transparent = FALSE
  701. Borderonly = FALSE
  702. ;Should allow setting text properties on the Window's title, as well as a background image
  703. ;that is sized according to the width of the title
  704. [Window.Caption]
  705. ImageFile = CaptionBG.bmp
  706. SizingMargins = 4, 141, 4, 4
  707. ContentMargins = 1, 1, 1, 1
  708. CaptionMargins = 3, 3, 0, 0
  709. SizingType = stretch
  710. ImageCount=3
  711. [Window.SmallCaption]
  712. ImageFile = CaptionSM.bmp
  713. ImageCount=3
  714. SizingType = stretch
  715. SizingMargins = 1, 1, 1, 1
  716. ContentMargins = 1, 1, 1, 1
  717. CaptionMargins = 5, 5, 0, 0
  718. ;The representation of a minimized window in and MDI application
  719. [Window.MinCaption]
  720. ImageFile = mincapnBlue.bmp
  721. ImageCount = 3
  722. SizingType = stretch
  723. SizingMargins = 9, 9, 1, 3
  724. ContentMargins = 1, 1, 1, 1
  725. CaptionMargins = 10, 3, 4, 2
  726. Font = Tahoma, 8, bold
  727. TextColor = 255 255 255
  728. ContentAlignment = left
  729. [Window.MinCaption(Inactive)]
  730. TextColor = 122 161 255
  731. [Window.MinCaption(Disabled)]
  732. TextColor = 255 165 164
  733. ;Shows as a strip at the top of a window when an application is maximized, rather than as a frame
  734. ;surrounding the window
  735. [Window.MaxCaption]
  736. ImageFile = maxcapnBlue.bmp
  737. ImageCount = 3
  738. SizingType = Stretch
  739. SizingMargins = 4, 141, 4, 4
  740. ContentMargins = 1, 1, 1, 1
  741. Font = Tahoma, 8, bold
  742. TextColor = 255 255 255
  743. ContentAlignment = left
  744. [Window.MaxCaption(Inactive)]
  745. TextColor = 122 161 255
  746. [Window.MaxCaption(Disabled)]
  747. TextColor = 255 165 164
  748. ;???
  749. [Window.dialog]
  750. bgType = borderFill
  751. fillType = Solid
  752. fillColor = 235 235 228
  753. bordersize = 0
  754. ;Nonclient scrollbars--will these still be used?
  755. [Window.HorzScroll]
  756. BgType = ImageFile
  757. ImageFile = hScrollArrowsBlue.bmp
  758. sizingType = Tile
  759. SizingMargins = 2, 2, 2, 2
  760. ImageCount = 8
  761. [Window.HorzThumb]
  762. BgType = ImageFile
  763. ImageFile = hScrollThumbBlue.bmp
  764. sizingType = Tile
  765. SizingMargins = 2, 2, 2, 2
  766. ImageCount = 4
  767. [Window.VertScroll]
  768. BgType = ImageFile
  769. ImageFile = vScrollArrowsBlue.bmp
  770. sizingType = Tile
  771. SizingMargins = 2, 2, 2, 2
  772. ImageCount = 8
  773. [Window.VertThumb]
  774. BgType = ImageFile
  775. ImageFile = vScrollThumbBlue.bmp
  776. sizingType = Tile
  777. SizingMargins = 2, 2, 2, 2
  778. ImageCount=4
  779. ;Close button in Window titlebar
  780. [Window.CloseButton]
  781. BgType = ImageFile
  782. sizingType = Stretch
  783. SizingMargins = 2, 2, 4, 4
  784. ImageFile = closeBlue.bmp
  785. ImageCount=12
  786. ;Maximize button in window titlebar
  787. [Window.MaxButton]
  788. BgType = ImageFile
  789. sizingType = Stretch
  790. SizingMargins = 2, 2, 4, 4
  791. ImageFile = maximizeBlue.bmp
  792. ImageCount=12
  793. ;Restore button in window titlebar
  794. [Window.RestoreButton]
  795. BgType = ImageFile
  796. sizingType = Stretch
  797. SizingMargins = 2, 2, 4, 4
  798. ImageFile = restoreBlue.bmp
  799. ImageCount=12
  800. ;Minimize button in window titlebar
  801. [Window.MinButton]
  802. BgType = ImageFile
  803. sizingType = Stretch
  804. SizingMargins = 2, 2, 4, 4
  805. ImageFile = minimizeBlue.bmp
  806. ImageCount=12
  807. ;Help button in window titlebar--normally only appears on dialog windows
  808. [Window.HelpButton]
  809. BgType = ImageFile
  810. sizingType = Stretch
  811. SizingMargins = 2, 2, 4, 4
  812. ImageFile = helpBlue.bmp
  813. ImageCount = 12
  814. ;Close button for palette windows
  815. [Window.SmallCloseButton]
  816. BgType = ImageFile
  817. sizingType = Stretch
  818. ImageFile = smcloseBlue.bmp
  819. ImageCount=12
  820. ;Close button for a maximized MDI window
  821. [Window.MDICloseButton]
  822. BgType = ImageFile
  823. sizingType = Stretch
  824. sizingMargins = 1,1,1,1
  825. ImageFile = closeMDI.bmp
  826. ImageCount=12
  827. ;Restore button for a maximized MDI window
  828. [Window.MDIRestoreButton]
  829. BgType = ImageFile
  830. sizingType = Stretch
  831. sizingMargins = 1,1,1,1
  832. ImageFile = restoreMDI.bmp
  833. ImageCount=12
  834. ;Minimize button for a maximized MDI window
  835. [Window.MDIMinButton]
  836. BgType = ImageFile
  837. sizingType = Stretch
  838. sizingMargins = 1,1,1,1
  839. ImageFile = minimizeMDI.bmp
  840. ImageCount=12
  841. ;-------------- Start Panel -------------------
  842. [StartPanel]
  843. bgtype = BorderFill
  844. fillColor = 160 160 0
  845. borderColor = 160 0 160
  846. bordersize = 8
  847. DefaultPaneSize = 0, 0, 360, 440
  848. [StartPanel.UserPane]
  849. UserPicture = False
  850. ImageLayout = Horizontal
  851. TextColor = 255 255 255
  852. Font = Tahoma, 14, bold
  853. DefaultPaneSize = 0, 0, 360, 40
  854. BgType = BorderFill
  855. FillType = HorzGradient
  856. GradientRatio1 = 0
  857. GradientColor1 = 80 150 248
  858. GradientRatio2 = 128
  859. GradientColor2 = 48 112 208
  860. GradientRatio3 = 127
  861. GradientColor3 = 48 112 208
  862. BorderSize = 0
  863. [StartPanel.ProgList]
  864. ContentMargins = 8 8 8 8
  865. FillColor = 255 255 255
  866. TextColor = 0 0 0
  867. HotTracking = 48 112 208
  868. CaptionText = 128 128 128
  869. Font = Tahoma, 8
  870. BgType = ImageFile
  871. SizingType = Tile
  872. SizingMargins = 13, 13, 10, 1
  873. ;ContentMargins = 3, 3, 2, 3
  874. imagefile = StartPanelMFUBackground.bmp
  875. imagecount = 1
  876. [StartPanel.ProgListSeparator]
  877. BgType = BorderFill
  878. FillType = HorzGradient
  879. GradientRatio1 = 0
  880. GradientColor1 = 240 240 240
  881. GradientRatio2 = 127
  882. GradientColor2 = 00 00 00
  883. GradientRatio3 = 128
  884. GradientColor3 = 240 240 240
  885. BorderSize = 0
  886. [StartPanel.MorePrograms]
  887. TextColor = 0 0 0
  888. HotTracking = 48 112 208
  889. Font = Tahoma, 8, bold
  890. BgType = ImageFile
  891. SizingType = Tile
  892. SizingMargins = 13, 13, 1, 10
  893. ;ContentMargins = 3, 3, 2, 3
  894. imagefile = StartPanelMoreProgBackground.bmp
  895. imagecount = 1
  896. [StartPanel.MoreProgramsArrow]
  897. BgType = ImageFile
  898. SizingType = TrueSize
  899. ImageFile = StartPanelMoreProgArrow.bmp
  900. ImageCount = 1
  901. [StartPanel.MoreProgramsArrow(hot)]
  902. BgType = ImageFile
  903. SizingType = TrueSize
  904. ImageFile = StartPanelMoreProgArrowHot.bmp
  905. ImageCount = 1
  906. [StartPanel.PlacesList]
  907. ContentMargins = 8 8 8 8
  908. FillColor = 48 112 208
  909. TextColor = 255 255 255
  910. HotTracking = 80 150 248
  911. Font = Tahoma, 8
  912. BgType = BorderFill
  913. fillType = Solid
  914. ; FillColor is already above
  915. BorderColor = 48 112 208
  916. bordersize = 1
  917. [StartPanel.PlacesListSeparator]
  918. BgType = BorderFill
  919. FillType = HorzGradient
  920. GradientRatio1 = 0
  921. GradientColor1 = 48 112 208
  922. GradientRatio2 = 127
  923. GradientColor2 = 80 150 248
  924. GradientRatio3 = 128
  925. GradientColor3 = 48 112 208
  926. BorderSize = 0
  927. [StartPanel.Logoff]
  928. TextColor = 255 255 255
  929. HotTracking = 0 0 0
  930. bgType = borderFill
  931. fillType = Solid
  932. fillColor = 80 150 248
  933. bordersize = 1
  934. borderColor = 80 150 248
  935. [StartPanel.LogoffButtons]
  936. BgType = ImageFile
  937. SizingType = TrueSize
  938. ImageFile = StartPanelLogoffButtons.bmp
  939. ImageCount = 1
  940. [StartPanel.LogoffButtons(hot)]
  941. BgType = ImageFile
  942. SizingType = TrueSize
  943. ImageFile = StartPanelLogoffButtonsHot.bmp
  944. ImageCount = 1
  945. ;-------------- Taskbar specific --------------
  946. [TaskBar]
  947. AlwaysShowSizingBar = True
  948. [Start::Button]
  949. BgType = ImageFile
  950. SizingType = Tile
  951. SizingMargins = 7, 6, 11, 11
  952. ContentMargins = 5, 4, 4, 4
  953. ImageFile = StartButtonBlue.bmp
  954. ImageCount = 5
  955. Font = Tahoma, 8, bold
  956. TextColor = 0 0 0
  957. [TaskBar::Toolbar]
  958. BgType = BorderFill
  959. FillType = Solid
  960. FillColor = 244 244 240
  961. BorderSize = 0
  962. Font = Tahoma, 8
  963. [TaskBar::Toolbar.Button]
  964. BgType = ImageFile
  965. SizingType = Tile
  966. SizingMargins = 1, 1, 3, 3
  967. ContentMargins = 0, 0, 2, 2
  968. ImageFile = TaskbandButtonBlue.bmp
  969. imageCount = 6
  970. [TaskBar::Toolbar.DropdownButton]
  971. BgType = ImageFile
  972. SizingType = Tile
  973. SizingMargins = 1, 1, 3, 3
  974. ContentMargins = 0, 0, 2, 2
  975. ImageFile = TaskbandButtonBlue.bmp
  976. imageCount = 6
  977. [TaskBar::Rebar]
  978. BgType = BorderFill
  979. FillType = Solid
  980. FillColor = 244 244 240
  981. BorderSize = 0
  982. Font = Tahoma, 8, bold
  983. TextColor = 0 0 0
  984. [TaskBar::Rebar.Band]
  985. BgType = BorderFill
  986. FillType = Solid
  987. FillColor = 244 244 240
  988. BorderSize = 0
  989. [TaskBar::Rebar.Gripper]
  990. BgType = ImageFile
  991. SizingType = Tile
  992. SizingMargins = 1, 1, 10, 3
  993. ImageFile = GripperBlue.bmp
  994. ImageCount = 1
  995. [TaskBar::Rebar.GripperVert]
  996. BgType = ImageFile
  997. SizingType = Tile
  998. SizingMargins = 10, 3, 1, 1
  999. ImageFile = GripperVertBlue.bmp
  1000. ImageCount = 1
  1001. [TaskBar::Rebar.Chevron]
  1002. BgType = ImageFile
  1003. SizingType = Stretch
  1004. SizingMargins = 1, 1, 1, 1
  1005. ImageFile = ChevBlueBg.bmp
  1006. ImageCount = 3
  1007. GlyphType = ImageGlyph
  1008. GlyphImageFile = Chevron.bmp
  1009. ;------ sample alpha image-based glyph ----
  1010. ;GlyphType = ImageGlyph
  1011. ;GlyphImageFile = CheckboxBlue.bmp
  1012. ;------ sample transparent image-based glyph ----
  1013. ;GlyphType = ImageGlyph
  1014. ;GlyphImageFile = ChevTrans.bmp
  1015. ;GlyphTransparentColor = 157 185 217
  1016. ;GlyphTransparent = true
  1017. ;------ sample font-based glyph ----
  1018. ;GlyphType = FontGlyph
  1019. ;GlyphFont = Marlett, 10, bold
  1020. ;GlyphIndex = 52
  1021. ;GlyphTextColor = 255 0 0
  1022. [TaskBar.BackgroundBottom]
  1023. BgType = BorderFill
  1024. FillType = Solid
  1025. FillColor = 244 244 240
  1026. BorderSize = 0
  1027. [TaskBar.SizingBarBottom]
  1028. BgType = ImageFile
  1029. SizingType = Stretch
  1030. ImageFile = TaskbarSizingBarBottom.bmp
  1031. ImageCount = 1
  1032. [TaskBar.BackgroundLeft]
  1033. BgType = BorderFill
  1034. FillType = Solid
  1035. FillColor = 244 244 240
  1036. BorderSize = 0
  1037. [TaskBar.SizingBarLeft]
  1038. BgType = ImageFile
  1039. SizingType = Stretch
  1040. ImageFile = TaskbarSizingBarLeft.bmp
  1041. ImageCount = 1
  1042. [TaskBar.BackgroundTop]
  1043. BgType = BorderFill
  1044. FillType = Solid
  1045. FillColor = 244 244 240
  1046. BorderSize = 0
  1047. [TaskBar.SizingBarTop]
  1048. BgType = ImageFile
  1049. SizingType = Stretch
  1050. ImageFile = TaskbarSizingBarTop.bmp
  1051. ImageCount = 1
  1052. [TaskBar.BackgroundRight]
  1053. BgType = BorderFill
  1054. FillType = Solid
  1055. FillColor = 244 244 240
  1056. BorderSize = 0
  1057. [TaskBar.SizingBarRight]
  1058. BgType = ImageFile
  1059. SizingType = Stretch
  1060. ImageFile = TaskbarSizingBarRight.bmp
  1061. ImageCount = 1
  1062. ;-------------- Taskband specific --------------
  1063. [TaskBand.GroupCount]
  1064. Font = Tahoma, 8, bold
  1065. TextColor = 0 76 154
  1066. [TaskBand::Toolbar]
  1067. BgType = BorderFill
  1068. FillType = Solid
  1069. FillColor = 244 244 240
  1070. BorderSize = 0
  1071. Font = Tahoma, 8
  1072. [TaskBand::Toolbar.Button]
  1073. BgType = ImageFile
  1074. SizingType = Tile
  1075. SizingMargins = 1, 1, 3, 3
  1076. ContentMargins = 0, 0, 2, 2
  1077. ImageFile = TaskbandButtonBlue.bmp
  1078. imageCount = 6
  1079. [TaskBand::Toolbar.DropdownButton]
  1080. BgType = ImageFile
  1081. SizingType = Tile
  1082. SizingMargins = 1, 1, 3, 3
  1083. ContentMargins = 0, 0, 2, 2
  1084. ImageFile = TaskbandButtonBlue.bmp
  1085. imageCount = 6
  1086. [TaskBandVert::Toolbar]
  1087. BgType = BorderFill
  1088. FillType = Solid
  1089. FillColor = 244 244 240
  1090. BorderSize = 0
  1091. Font = Tahoma, 8
  1092. [TaskBandVert::Toolbar.Button]
  1093. BgType = ImageFile
  1094. SizingType = Tile
  1095. SizingMargins = 1, 1, 3, 3
  1096. ContentMargins = 0, 0, 2, 2
  1097. ImageFile = TaskbandButtonBlue.bmp
  1098. imageCount = 6
  1099. [TaskBandVert::Toolbar.DropdownButton]
  1100. BgType = ImageFile
  1101. SizingType = Tile
  1102. SizingMargins = 1, 1, 3, 3
  1103. ContentMargins = 0, 0, 2, 2
  1104. ImageFile = TaskbandButtonBlue.bmp
  1105. imageCount = 6
  1106. ;-------------- Taskband Group Menu specific --------------
  1107. [TaskBandGroupMenu::Toolbar]
  1108. BgType = BorderFill
  1109. FillType = Solid
  1110. FillColor = 244 244 240
  1111. BorderSize = 0
  1112. Font = Tahoma, 8
  1113. [TaskBandGroupMenu::Toolbar.Button]
  1114. BgType = ImageFile
  1115. SizingType = Tile
  1116. SizingMargins = 1, 1, 1, 1
  1117. ContentMargins = 0, 0, 0, 0
  1118. ImageFile = ToolbarButtonBlue.bmp
  1119. ImageCount = 6
  1120. ;-------------- Tray Notify specific --------------
  1121. [TrayNotify::Toolbar]
  1122. BgType = BorderFill
  1123. FillType = Solid
  1124. FillColor = 244 244 240
  1125. BorderSize = 0
  1126. [TrayNotify::Toolbar.Button]
  1127. BgType = ImageFile
  1128. SizingType = Tile
  1129. SizingMargins = 1, 1, 1, 1
  1130. ContentMargins = 0, 0, 0, 0
  1131. ImageFile = ToolbarButtonBlue.bmp
  1132. ImageCount = 6
  1133. [TrayNotifyHoriz::TrayNotify.Background]
  1134. BgType = ImageFile
  1135. SizingType = Tile
  1136. SizingMargins = 17, 3, 3, 3
  1137. ContentMargins = 4, 3, 3, 3
  1138. ImageFile = TrayNotifyHorizBackground.bmp
  1139. ImageCount = 1
  1140. [TrayNotifyHoriz::TrayNotify.AnimBackground]
  1141. BgType = BorderFill
  1142. FillType = Solid
  1143. FillColor = 244 244 240
  1144. BorderSize = 0
  1145. [TrayNotifyHoriz::Button]
  1146. BgType = ImageFile
  1147. ImageFile = TrayChevronHoriz.bmp
  1148. ImageCount = 3
  1149. Transparent = True
  1150. TransparentColor = 255 0 0
  1151. [TrayNotifyHorizOpen::Button]
  1152. BgType = ImageFile
  1153. ImageFile = TrayChevronHorizOpen.bmp
  1154. ImageCount = 3
  1155. Transparent = True
  1156. TransparentColor = 255 0 0
  1157. [TrayNotifyVert::TrayNotify.Background]
  1158. BgType = ImageFile
  1159. SizingType = Tile
  1160. SizingMargins = 3, 3, 17, 3
  1161. ContentMargins = 3, 3, 4, 3
  1162. ImageFile = TrayNotifyVertBackground.bmp
  1163. ImageCount = 1
  1164. [TrayNotifyVert::TrayNotify.AnimBackground]
  1165. BgType = BorderFill
  1166. FillType = Solid
  1167. FillColor = 244 244 240
  1168. BorderSize = 0
  1169. [TrayNotifyVert::Button]
  1170. BgType = ImageFile
  1171. ImageFile = TrayChevronVert.bmp
  1172. ImageCount = 3
  1173. Transparent = True
  1174. TransparentColor = 255 0 0
  1175. ImageLayout = vertical
  1176. [TrayNotifyVertOpen::Button]
  1177. BgType = ImageFile
  1178. ImageFile = TrayChevronVertOpen.bmp
  1179. ImageCount = 3
  1180. Transparent = True
  1181. TransparentColor = 255 0 0
  1182. ImageLayout = vertical
  1183. [TrayNotify::Clock]
  1184. BgType = BorderFill
  1185. FillType = Solid
  1186. FillColor = 244 244 240
  1187. BorderSize = 0
  1188. Font = Tahoma, 8, bold
  1189. TextColor = 0 0 0
  1190. ;-------------- Application-specific ------------------------
  1191. ;----------- places bar --------------------------------
  1192. ;The places toolbar in the fileopen/save dialog.
  1193. [Placesbar::Toolbar]
  1194. bgtype = BorderFill
  1195. fillType = Solid
  1196. FillColor = 244 244 240
  1197. BorderSize = 0
  1198. [Placesbar::Toolbar.Button]
  1199. SizingMargins = 3, 3, 3, 3
  1200. ContentMargins = 0, 0, 3, 3
  1201. ImageFile=PlacesBarButtonBlue.bmp
  1202. bgtype = imagefile
  1203. imageCount = 6
  1204. sizingType = tile