2495 lines
62 KiB
INI
2495 lines
62 KiB
INI
;------------------------------------------
|
|
; file: metallic\default.ini
|
|
;------------------------------------------
|
|
|
|
|
|
;--------- Globals -------------------------
|
|
[globals]
|
|
; global edge colors (redefined in various parts)
|
|
EdgeLightColor = 241 239 226
|
|
EdgeHighLightColor = 255 255 255
|
|
EdgeShadowColor = 172 168 153
|
|
EdgeDkShadowColor = 113 111 100
|
|
EdgeFillColor = 236 233 216
|
|
|
|
;--------- system metrics -------------------------------
|
|
[SysMetrics]
|
|
;The system metric colors also effect non-themed controls.
|
|
|
|
ScrollbarWidth = ##SBWidth
|
|
ScrollbarHeight = ##SBHeight
|
|
|
|
Window = 255 255 255
|
|
MenuBar = 224 226 235
|
|
Menu = 255 255 255
|
|
Background = 88 87 104
|
|
Btnface = 224 223 227
|
|
Highlight = 178 180 191
|
|
|
|
ActiveCaption = 192 192 192
|
|
CaptionText = 14 16 16
|
|
InactiveCaption = 255 255 255
|
|
InactiveCaptionText = 162 161 161
|
|
GradientActiveCaption = 200 200 200
|
|
GradientInactiveCaption = 238 239 247
|
|
HighlightText = 0 0 0
|
|
MenuHilight = 187 183 199
|
|
Hottracking = 100 139 203
|
|
BtnShadow = 157 157 161
|
|
GrayText = 172 168 153
|
|
BtnHighlight = 255 255 255
|
|
DkShadow3d = 113 111 100
|
|
Light3d = 241 239 226
|
|
|
|
|
|
;---- don't remove these fonts (must specify to be localizable) ----
|
|
CaptionFont = ##CaptionFont
|
|
CaptionBarHeight = ##CaptionBarHeight
|
|
SmallCaptionFont = ##SmallCaptionFont
|
|
SMCaptionBarHeight = ##SMCaptionBarHeight
|
|
SMCaptionBarWidth = ##SMCaptionBarWidth
|
|
MenuFont = ##MenuFont
|
|
StatusFont = ##StatusFont
|
|
MsgBoxFont = ##MsgBoxFont
|
|
IconTitleFont = ##IconTitleFont
|
|
|
|
|
|
;The FlatMenus option allows the author to turn of the 3d border on menus
|
|
FlatMenus = true
|
|
|
|
;This may allow authors to specify a theme matching stylesheet for Webviews, etc.
|
|
CssName = cpwebvw.css
|
|
|
|
;This may allow authors to specify a theme matching XML file.
|
|
XmlName = default.xml
|
|
|
|
; this theme designed for 15-bit color and higher
|
|
MinColorDepth = 15
|
|
|
|
;---------- buttons ---------------------------------
|
|
;Overall button class
|
|
[button]
|
|
|
|
;Normal button
|
|
[button.pushbutton]
|
|
bgtype = imagefile
|
|
SizingMargins = 8, 8, 9, 9
|
|
sizingType = Stretch
|
|
ContentMargins = 3, 3, 3, 3
|
|
ImageFile = Metallic\button.bmp
|
|
imageCount = 5
|
|
ImageLayout = vertical
|
|
TextColor = 0 0 0
|
|
FillColorHint = 240 241 245; Average fill color (light beige)
|
|
BorderColorHint = 0 60 116; Edge color (dark blue grey)
|
|
AccentColorHint = 250 196 88; Rollover hilite color (orange)
|
|
MinSize= 10, 5
|
|
|
|
;Makes text for button grey for the disabled state
|
|
[button.pushbutton(disabled)]
|
|
TextColor = 161 161 146
|
|
|
|
;Color hint for default state
|
|
[button.pushbutton(defaulted)]
|
|
AccentColorHint = 240 241 245; Default state hilite color (light grey)
|
|
|
|
|
|
;Checkboxes
|
|
[button.checkbox]
|
|
bgtype = imagefile
|
|
imagelayout=vertical
|
|
sizingType = TrueSize
|
|
SizingMargins = 0, 0, 0, 0
|
|
ContentMargins = 0, 0, 0, 0
|
|
imageCount = 12
|
|
MirrorImage = false
|
|
FillColorHint = 33 161 33; Checkmark color (green)
|
|
BorderColorHint = 119 119 92; Edge color (dark grey)
|
|
AccentColorHint = 250 196 88; Rollover hilite color (orange)
|
|
|
|
|
|
;----- Multiple control sizes for different video adapter resolution settings ----
|
|
ImageSelectType = Dpi ; choose src image by DPI of target DC (vs. theme DPI)
|
|
TrueSizeScalingType = Dpi
|
|
TrueSizeStretchMark = 50; start stretching when target exceeds source size by 50%
|
|
UniformSizing = true ; if you must stretch, do width & height equally
|
|
ImageFile1=Metallic\CheckBox13.bmp
|
|
ImageFile2=Metallic\CheckBox16.bmp
|
|
ImageFile3=Metallic\CheckBox25.bmp
|
|
MinDpi1=96
|
|
MinDpi2=118
|
|
MinDpi3=185
|
|
|
|
;Checkboxes can be disabled in various states, so each of the following entries sets the text
|
|
;to grey for the corresponding states.
|
|
[button.checkbox(checkeddisabled)]
|
|
TextColor = 161 161 146
|
|
|
|
[button.checkbox(uncheckeddisabled)]
|
|
TextColor = 161 161 146
|
|
|
|
[button.checkbox(mixeddisabled)]
|
|
TextColor = 161 161 146
|
|
|
|
;Radio buttons
|
|
[button.radiobutton]
|
|
bgtype = imagefile
|
|
imagelayout=vertical
|
|
transparent=true
|
|
sizingType = TrueSize
|
|
SizingMargins = 0, 0, 0, 0
|
|
ContentMargins = 0, 0, 0, 0
|
|
imageCount = 8
|
|
FillColorHint = 33 161 33; Selection dot color (green)
|
|
BorderColorHint = 119 119 92; Edge color (dark grey)
|
|
AccentColorHint = 250 196 88; Rollover hilite color (orange)
|
|
|
|
|
|
;----- Multiple control sizes for different video adapter resolution settings ----
|
|
ImageSelectType = Dpi ; choose src image by DPI of target DC (vs. theme DPI)
|
|
TrueSizeScalingType = Dpi
|
|
TrueSizeStretchMark = 50; start stretching when target exceeds source size by 50%
|
|
UniformSizing = true ; if you must stretch, do width & height equally
|
|
ImageFile1=Metallic\RadioButton13.bmp
|
|
ImageFile2=Metallic\RadioButton16.bmp
|
|
ImageFile3=Metallic\RadioButton25.bmp
|
|
MinDpi1=96
|
|
MinDpi2=118
|
|
MinDpi3=185
|
|
|
|
;Radio buttons can be disabled in various states, so each of the following entries sets the text
|
|
;to grey for the corresponding states.
|
|
[button.radiobutton(checkeddisabled)]
|
|
TextColor = 161 161 146
|
|
|
|
[button.radiobutton(uncheckeddisabled)]
|
|
TextColor = 161 161 146
|
|
|
|
;The line enclosing a group of controls
|
|
[button.groupbox]
|
|
TextColor = 0 70 213
|
|
bgtype = imagefile
|
|
SizingMargins = 4, 4, 4, 4
|
|
sizingType = Tile
|
|
ImageFile = Metallic\GroupBox.bmp
|
|
;BorderOnly means that the area inside the sizing margins is not drawn (so it won't
|
|
;draw on top of the controls it surrounds)
|
|
borderOnly = true
|
|
transparent = true
|
|
BorderColorHint = 119 119 92; Dark grey color
|
|
NormalSize = 9999, 9999 ; never source size a groupbox (from IE)
|
|
|
|
|
|
;----------- combobox --------------------------------
|
|
;Dropdown controls
|
|
[Combobox]
|
|
; Globals for the entire control
|
|
BgType = BorderFill
|
|
BorderSize = 1
|
|
FillColor = 255 255 255
|
|
BorderColor = 127 157 185
|
|
|
|
[Combobox(Hot)]
|
|
; Globals when the mouse is over the control
|
|
BorderColor = 127 157 185
|
|
|
|
|
|
[Combobox(Disabled)]
|
|
; Globals when the control is disabled
|
|
BorderColor = 201 199 186
|
|
FillColor = 245 244 234
|
|
|
|
;The down pointing triangle button
|
|
[Combobox.DropDownButton]
|
|
BgType = imagefile
|
|
imagelayout = vertical
|
|
SizingType = Stretch
|
|
ImageFile = Metallic\ComboButton.bmp
|
|
SizingMargins = 3, 3, 3, 3
|
|
ContentMargins = 0, 0, 0, 0
|
|
ImageCount = 4
|
|
GlyphType = ImageGlyph
|
|
GlyphImageFile = Metallic\ComboButtonGlyph.bmp
|
|
GlyphTransparent= true
|
|
FillColorHint = 240 241 245; Average fill color (light grey)
|
|
BorderColorHint = 255 255 255; Edge color (white)
|
|
|
|
|
|
;----------- edit --------------------------------
|
|
[edit]
|
|
BgType = BorderFill
|
|
BorderSize = 1
|
|
FillColor = 255 255 255
|
|
BorderColor = 165 172 178
|
|
|
|
[edit.edittext(Disabled)]
|
|
FillColor = 235 235 228
|
|
TextColor = 161 161 146
|
|
|
|
[edit.edittext(ReadOnly)]
|
|
FillColor = 235 235 228
|
|
TextColor = 0 0 0
|
|
|
|
;----------- listbox --------------------------------
|
|
[Listbox]
|
|
BgType = BorderFill
|
|
BorderSize = 1
|
|
FillColor = 255 255 255
|
|
BorderColor = 127 157 185
|
|
|
|
|
|
;--------- Scrollbar -------------------------
|
|
[ScrollBar]
|
|
|
|
;The buttons, both horizontal and vertical in one strip
|
|
; Scrollbar Arrow Buttons
|
|
[ScrollBar.ArrowBtn]
|
|
BgType = ImageFile
|
|
SizingMargins = 5, 5, 5, 5
|
|
ContentMargins = 0, 0, 3, 3
|
|
SizingType = Stretch
|
|
ImageFile = Metallic\ScrollArrows.bmp
|
|
ImageCount = 16
|
|
ImageLayout = Vertical
|
|
GlyphType = ImageGlyph
|
|
GlyphTransparent= True
|
|
FillColorHint = 240 241 245; Average fill color (light grey)
|
|
BorderColorHint = 255 255 255; Edge color (white)
|
|
|
|
|
|
|
|
;----- the two sizes of scrollbar arrow glyphs ----
|
|
ImageSelectType = size ; choose src image by DPI of target DC (vs. theme DPI)
|
|
TrueSizeScalingType = size
|
|
SourceShrink = True
|
|
TrueSizeStretchMark = 150; start stretching when target exceeds source size by 150%
|
|
UniformSizing = true; if you must stretch, do width & height equally
|
|
ImageFile1 = Metallic\ScrollArrowGlyphsSmall.bmp
|
|
ImageFile2 = Metallic\ScrollArrowGlyphs.bmp
|
|
MinSize1 = 7, 7
|
|
MinSize2 = 9, 9
|
|
NormalSize = 7, 10
|
|
|
|
; Scrollbar Thumb (horizontal)
|
|
[Scrollbar.ThumbBtnHorz]
|
|
BgType = ImageFile
|
|
SizingMargins = 5, 5, 5, 5
|
|
ContentMargins = 4, 4, 0, 0
|
|
ImageFile = Metallic\ScrollThumbHorizontal.bmp
|
|
ImageCount = 4
|
|
ImageLayout = Vertical
|
|
FillColorHint = 240 241 245; Average fill color (light grey)
|
|
BorderColorHint = 255 255 255; Edge color (white)
|
|
|
|
|
|
|
|
;A visual element in the middle of the scrollbar thumb
|
|
[Scrollbar.GripperHorz]
|
|
BgType = ImageFile
|
|
SizingType = TrueSize
|
|
ImageFile = Metallic\ScrollThumbGripperHorizontal.BMP
|
|
imagelayout = vertical
|
|
Transparent = True
|
|
ImageCount = 4
|
|
|
|
; Scrollbar Thumb (vertical)
|
|
[Scrollbar.ThumbBtnVert]
|
|
BgType = ImageFile
|
|
SizingMargins = 5, 5, 5, 5
|
|
ContentMargins = 0, 0, 4, 4
|
|
ImageFile = Metallic\ScrollThumbVertical.bmp
|
|
ImageCount = 4
|
|
ImageLayout = vertical
|
|
FillColorHint = 240 241 245; Average fill color (light grey)
|
|
BorderColorHint = 255 255 255; Edge color (white)
|
|
|
|
|
|
;A visual element in the middle of the scrollbar thumb
|
|
[Scrollbar.GripperVert]
|
|
BgType = ImageFile
|
|
SizingType = TrueSize
|
|
ImageFile = Metallic\ScrollThumbGripperVertical.BMP
|
|
ImageCount = 4
|
|
Transparent = True
|
|
ImageLayout = Vertical
|
|
|
|
|
|
; Scrollbar Tracks (horizontal)
|
|
[Scrollbar.LowerTrackHorz]
|
|
BgType = imagefile
|
|
ImageFile = Metallic\ScrollShaftHorizontal.bmp
|
|
SizingMargins = 0, 0, 1, 1
|
|
ImageCount = 4
|
|
ImageLayout = Vertical
|
|
FillColorHint = 240 241 245; Average fill color (light grey)
|
|
|
|
|
|
|
|
[Scrollbar.UpperTrackHorz]
|
|
BgType = imagefile
|
|
ImageFile = Metallic\ScrollShaftHorizontal.bmp
|
|
SizingMargins = 0, 0, 1, 1
|
|
ImageCount = 4
|
|
ImageLayout = Vertical
|
|
FillColorHint = 240 241 245; Average fill color (light grey)
|
|
|
|
|
|
|
|
; Scrollbar Tracks (vertical)
|
|
[Scrollbar.LowerTrackVert]
|
|
BgType = imagefile
|
|
ImageFile = Metallic\ScrollShaftVertical.bmp
|
|
SizingMargins = 1, 1, 0, 0
|
|
ImageCount = 4
|
|
ImageLayout = Vertical
|
|
FillColorHint = 240 241 245; Average fill color (light grey)
|
|
|
|
|
|
|
|
[Scrollbar.UpperTrackVert]
|
|
BgType = imagefile
|
|
ImageFile = Metallic\ScrollShaftVertical.bmp
|
|
SizingMargins = 1, 1, 0, 0
|
|
ImageCount = 4
|
|
ImageLayout = Vertical
|
|
FillColorHint = 240 241 245; Average fill color (light grey)
|
|
|
|
|
|
|
|
[ScrollBar.SizeBox]
|
|
ImageFile = Metallic\ResizeGrip2.bmp
|
|
bgtype = imagefile
|
|
imageCount = 2
|
|
sizingType = trueSize
|
|
Transparent = True
|
|
TransparentColor = 255 0 0
|
|
FillColorHint = 119 119 92; Gripper dot color (dark grey)
|
|
VAlign = Bottom
|
|
|
|
|
|
|
|
;----------- spin --------------------------------
|
|
;Spin buttons for incrementing values in a field
|
|
[spin]
|
|
bgtype = imagefile
|
|
sizingType = tile
|
|
ImageFile = Metallic\FieldOutlineBlue.bmp
|
|
SizingMargins = 2, 2, 2, 2
|
|
imageCount = 1
|
|
|
|
[Spin.Up]
|
|
bgtype = imagefile
|
|
sizingType = stretch
|
|
ImageFile = Metallic\SpinButtonBackgroundUp.bmp
|
|
SizingMargins = 4, 4, 4, 4
|
|
ContentMargins = 0, 0, 0, 0
|
|
imageCount = 4
|
|
ImageLayout = Vertical
|
|
GlyphType = ImageGlyph
|
|
GlyphImageFile = Metallic\SpinUpGlyph.bmp
|
|
GlyphTransparent= True
|
|
FillColorHint = 240 241 245; Average fill color (light grey)
|
|
BorderColorHint = 255 255 255; Edge color (white)
|
|
|
|
|
|
[Spin.Down]
|
|
bgtype = imagefile
|
|
sizingType = tile
|
|
ImageFile = Metallic\SpinButtonBackgroundDown.bmp
|
|
SizingMargins = 4, 4, 4, 4
|
|
ContentMargins = 0, 0, 0, 0
|
|
imageCount = 4
|
|
ImageLayout = Vertical
|
|
GlyphType = ImageGlyph
|
|
GlyphImageFile = Metallic\SpinDownGlyph.bmp
|
|
GlyphTransparent= True
|
|
FillColorHint = 240 241 245; Average fill color (light grey)
|
|
BorderColorHint = 255 255 255; Edge color (white)
|
|
|
|
|
|
[Spin.Uphorz]
|
|
bgtype = imagefile
|
|
sizingType = stretch
|
|
ImageFile = Metallic\SpinButtonBackgroundRight.bmp
|
|
SizingMargins = 4, 4, 4, 4
|
|
ContentMargins = 0, 0, 0, 0
|
|
imageCount = 4
|
|
ImageLayout = Vertical
|
|
GlyphType = ImageGlyph
|
|
GlyphImageFile = Metallic\SpinRightGlyph.bmp
|
|
GlyphTransparent = True
|
|
FillColorHint = 240 241 245; Average fill color (light grey)
|
|
BorderColorHint = 255 255 255; Edge color (white)
|
|
|
|
|
|
[Spin.Downhorz]
|
|
bgtype = imagefile
|
|
sizingType = Stretch
|
|
ImageFile = Metallic\SpinButtonBackgroundLeft.bmp
|
|
SizingMargins = 4, 4, 4, 4
|
|
ContentMargins = 0, 0, 0, 0
|
|
imageCount = 4
|
|
ImageLayout = Vertical
|
|
GlyphType = ImageGlyph
|
|
GlyphImageFile = Metallic\SpinLeftGlyph.bmp
|
|
GlyphTransparent = True
|
|
FillColorHint = 240 241 245; Average fill color (light grey)
|
|
BorderColorHint = 255 255 255; Edge color (white)
|
|
|
|
|
|
;----------- rebar --------------------------------
|
|
;Rebar is a container for toolbars
|
|
|
|
[Rebar]
|
|
bgtype =imagefile
|
|
sizingtype=stretch
|
|
ImageFile = Metallic\ToolbarBackground.bmp
|
|
sizingmargins= 0, 0, 0, 4
|
|
Font = ##Tahoma8
|
|
TextColor = 127 124 115
|
|
|
|
FillColorHint = 244 245 249; Background color of toolbars (light grey)
|
|
|
|
|
|
[Rebar.Band]
|
|
bgtype = none
|
|
ContentMargins = 2, 0, 0, 0
|
|
EdgeShadowColor = 216 210 189
|
|
|
|
|
|
[Rebar.Gripper]
|
|
bgtype = imagefile
|
|
SizingMargins = 2, 1, 4, 2
|
|
ContentMargins = 2, 1, 0, 0
|
|
ImageFile = Metallic\ToolbarGripper.bmp
|
|
sizingType = Tile
|
|
Transparent = true
|
|
FillColorHint = 119 119 92; Gripper dot color (dark grey)
|
|
|
|
|
|
[Rebar.GripperVert]
|
|
bgtype = imagefile
|
|
SizingMargins = 3, 3, 2, 1
|
|
ContentMargins = 1, 2, 0, 0
|
|
ImageFile = Metallic\ToolbarGripperVert.bmp
|
|
sizingType = Tile
|
|
Transparent = true
|
|
FillColorHint = 119 119 92; Gripper dot color (dark grey)
|
|
|
|
|
|
[Rebar.Chevron]
|
|
SizingMargins = 4, 4, 4, 4
|
|
ContentMargins = 0, 0, 0, 0
|
|
ImageFile = Metallic\ToolbarButtons.bmp
|
|
bgtype = imagefile
|
|
imagelayout = vertical
|
|
imageCount= 6
|
|
sizingType= Stretch
|
|
Transparent = true
|
|
GlyphType = ImageGlyph
|
|
GlyphImageFile = Metallic\Chevron.bmp
|
|
GlyphTransparent= true
|
|
VAlign = Top
|
|
FillColorHint = 0 0 0; Glyph color (black)
|
|
|
|
|
|
[Rebar.ChevronVert]
|
|
SizingMargins = 4, 4, 4, 4
|
|
ContentMargins = 0, 0, 0, 0
|
|
ImageFile = Metallic\ToolbarButtons.bmp
|
|
bgtype = imagefile
|
|
imagelayout = vertical
|
|
imageCount= 6
|
|
sizingType= Stretch
|
|
Transparent = true
|
|
GlyphType = ImageGlyph
|
|
GlyphImageFile = Metallic\Chevron.bmp
|
|
GlyphTransparent= true
|
|
VAlign = Top
|
|
FillColorHint = 0 0 0; Glyph color (black)
|
|
|
|
|
|
;----------- toolbar--------------------------------
|
|
;Button bars and menu bars in some applicatons
|
|
|
|
[Toolbar]
|
|
BgType = Borderfill
|
|
Bordersize = 0
|
|
FillColor = 239 239 237
|
|
TextColor = 0 0 0
|
|
|
|
[Toolbar(Pressed)]
|
|
TextColor= 255 255 255
|
|
|
|
[Toolbar.Button]
|
|
SizingMargins = 4, 4, 4, 4
|
|
ContentMargins = 0, 0, 0, 0
|
|
ImageFile = Metallic\ToolbarButtons.bmp
|
|
bgtype = imagefile
|
|
imagelayout = vertical
|
|
imageCount = 6
|
|
sizingType = Stretch
|
|
Transparent = true
|
|
TransparentColor = 255 0 255
|
|
FillColorHint = 240 241 245; Average fill color (light grey)
|
|
BorderColorHint = 119 119 92; Edge color (dark grey)
|
|
|
|
|
|
[Toolbar.Separator]
|
|
SizingMargins = 5, 2, 2, 1
|
|
ImageFile = Metallic\Separator.bmp
|
|
bgtype = imagefile
|
|
imageCount = 1
|
|
sizingType = tile
|
|
Transparent = true
|
|
TransparentColor = 255 0 0
|
|
FillColorHint = 177 183 187; Darker separator color (medium grey)
|
|
|
|
|
|
[Toolbar.SeparatorVert]
|
|
SizingMargins = 2, 1, 5, 1
|
|
ImageFile = Metallic\SeparatorVert.bmp
|
|
bgtype = imagefile
|
|
imageCount = 1
|
|
sizingType = tile
|
|
Transparent = true
|
|
TransparentColor = 255 0 0
|
|
FillColorHint = 177 183 187; Darker separator color (medium grey)
|
|
|
|
|
|
|
|
[Toolbar.DropdownButton]
|
|
SizingMargins = 4, 4, 4, 4
|
|
ContentMargins = 0, 0, 0, 0
|
|
ImageFile = Metallic\ToolbarButtons.bmp
|
|
bgtype = imagefile
|
|
imagelayout = vertical
|
|
imageCount = 6
|
|
sizingType = Stretch
|
|
Transparent = true
|
|
TransparentColor = 255 0 255
|
|
FillColorHint = 240 241 245; Average fill color (light grey)
|
|
BorderColorHint = 119 119 92; Edge color (dark grey)
|
|
|
|
|
|
[Toolbar.SplitButton]
|
|
SizingMargins = 4, 2, 4, 4
|
|
ImageFile = Metallic\ToolbarButtonsSplit.bmp
|
|
bgtype = imagefile
|
|
imagelayout = vertical
|
|
imageCount = 6
|
|
sizingType = Stretch
|
|
Transparent = true
|
|
TransparentColor = 255 0 255
|
|
FillColorHint = 240 241 245; Average fill color (light grey)
|
|
BorderColorHint = 119 119 92; Edge color (dark grey)
|
|
|
|
|
|
[Toolbar.SplitButtonDropdown]
|
|
SizingMargins = 2, 4, 4, 4
|
|
ImageFile = Metallic\ToolbarButtonsSplitDropdown.bmp
|
|
bgtype = imagefile
|
|
imagelayout = vertical
|
|
imageCount = 6
|
|
sizingType = Stretch
|
|
Transparent = true
|
|
TransparentColor = 255 0 255
|
|
GlyphType = ImageGlyph
|
|
GlyphImageFile = Metallic\ToolbarButtonsSplitDropdownGlyph.bmp
|
|
GlyphTransparent= true
|
|
FillColorHint = 240 241 245; Average fill color (light grey)
|
|
BorderColorHint = 119 119 92; Edge color (dark grey)
|
|
|
|
|
|
|
|
;----------- status--------------------------------
|
|
;The area at the bottom of a window containing miscellaneous status info
|
|
;The first is the container for the status sections
|
|
[Status]
|
|
SizingMargins = 50, 17, 5, 9
|
|
ImageFile = Metallic\StatusBackground.bmp
|
|
bgtype = imagefile
|
|
imageCount = 1
|
|
sizingType = Tile
|
|
FillColorHint = 177 183 187; Average fill color (grey)
|
|
|
|
|
|
;The individual status item backgrounds
|
|
[Status.Pane]
|
|
SizingMargins = 0, 2, 2, 2
|
|
ImageFile = Metallic\StatusPane.bmp
|
|
bgtype = imagefile
|
|
imageCount = 1
|
|
sizingType = Tile
|
|
Transparent = True
|
|
TransparentColor = 255 0 0
|
|
FillColorHint = 119 119 92; Resize gripper dots (dark grey)
|
|
|
|
|
|
;The individual status item backgrounds
|
|
[Status.GripperPane]
|
|
bgtype = none
|
|
|
|
;The resize corner
|
|
[Status.Gripper]
|
|
ContentMargins=0,0,0,0
|
|
ImageFile = Metallic\ResizeGrip2.bmp
|
|
bgtype = imagefile
|
|
imageCount = 2
|
|
sizingType = trueSize
|
|
Transparent = True
|
|
TransparentColor = 255 0 0
|
|
FillColorHint = 119 119 92; Resize gripper dots (dark grey)
|
|
VAlign = Bottom
|
|
|
|
|
|
;----------- list view --------------------------------
|
|
;Icon, list, details, etc.
|
|
|
|
[ListView]
|
|
BgType = BorderFill
|
|
BorderSize = 1
|
|
FillColor = 255 255 255
|
|
BorderColor = 127 157 185
|
|
|
|
|
|
;----------- Tree view --------------------------------
|
|
|
|
[TreeView]
|
|
BgType = BorderFill
|
|
BorderSize = 1
|
|
FillColor = 255 255 255
|
|
BorderColor = 127 157 185
|
|
|
|
[TreeView.Glyph]
|
|
bgtype = imagefile
|
|
ImageFile = Metallic\treeExpandCollapse.bmp
|
|
SizingType = TrueSize
|
|
imagecount = 2
|
|
imageLayout=vertical
|
|
|
|
|
|
|
|
;----------- header --------------------------------
|
|
;The area at the top of a list, with clickable headers for sort order
|
|
[Header]
|
|
bgtype = imagefile
|
|
SizingMargins = 0, 0, 0, 3
|
|
ImageFile = Metallic\ListviewHeaderBackground.bmp
|
|
sizingType = tile
|
|
|
|
[Header.HeaderItem]
|
|
bgtype = imagefile
|
|
SizingMargins = 8, 8, 3, 4
|
|
ContentMargins = 3, 0, 0, 0
|
|
ImageFile = Metallic\ListViewHeader.bmp
|
|
imageCount=5
|
|
imageLayout=vertical
|
|
sizingType = tile
|
|
transparent=true
|
|
transparentcolor=255 0 0
|
|
FillColorHint = 240 241 245; Average fill color (light grey)
|
|
AccentColorHint = 252 194 71; Rollover hilite color (orange)
|
|
|
|
|
|
;----------- progress --------------------------------
|
|
;Progress bars
|
|
[Progress]
|
|
ProgressChunkSize=6
|
|
ProgressSpaceSize=2
|
|
bgType = borderFill
|
|
fillType = Solid
|
|
fillColor = 235 235 228
|
|
bordersize = 1
|
|
borderColor = 235 235 228
|
|
|
|
|
|
[Progress.Bar]
|
|
bgtype = imagefile
|
|
ImageFile = Metallic\ProgressTrack.bmp
|
|
MinSize=10,10
|
|
sizingMargins = 4, 4, 3, 3
|
|
SizingType = tile
|
|
FillColorHint = 255 255 255; Background color (white)
|
|
BorderColorHint = 104 104 104; Edge color (dark grey)
|
|
|
|
NormalSize = 100, 18
|
|
SourceShrink = true
|
|
|
|
[Progress.Chunk]
|
|
bgtype = imagefile
|
|
ImageFile = Metallic\ProgressChunk.bmp
|
|
sizingMargins = 0, 0, 6, 5
|
|
SizingType = tile
|
|
|
|
[Progress.BarVert]
|
|
bgtype = imagefile
|
|
ImageFile = Metallic\ProgressTrackVert.bmp
|
|
sizingMargins = 3, 3, 4, 4
|
|
SizingType = tile
|
|
FillColorHint = 255 255 255; Background color (white)
|
|
BorderColorHint = 104 104 104; Edge color (dark grey)
|
|
|
|
[Progress.ChunkVert]
|
|
bgtype = imagefile
|
|
ImageFile = Metallic\ProgressChunkVert.bmp
|
|
sizingMargins = 6, 5, 0, 0
|
|
SizingType = tile
|
|
FillColorHint = 46 211 49; Progress indicator color (green)
|
|
|
|
;----------- tab --------------------------------
|
|
[Tab]
|
|
bgType = borderFill
|
|
fillType = Solid
|
|
fillColor = 224 224 227
|
|
bordersize = 0
|
|
|
|
|
|
;The whole content area of a tab page
|
|
[Tab.Pane]
|
|
bgtype = imagefile
|
|
ImageFile = Metallic\TabPaneEdge.bmp
|
|
sizingMargins = 2, 4, 2, 4
|
|
SizingType = stretch
|
|
imagecount = 1
|
|
FillColorHint = 247 247 249; Light tab background color (very light grey)
|
|
BorderColorHint = 145 155 156; Edge color (dark grey)
|
|
|
|
|
|
[Tab.TabItem]
|
|
SizingMargins = 6, 6, 6, 6
|
|
ContentMargins = 0, 0, 0, 0
|
|
bgtype=imagefile
|
|
ImageFile = Metallic\tabItem.bmp
|
|
imagecount=5
|
|
imagelayout=vertical
|
|
FillColorHint = 240 241 245; Tab average color (light grey)
|
|
BorderColorHint = 146 146 146; Edge color (grey)
|
|
AccentColorHint = 255 200 60; Rollover hilite color (orange)
|
|
|
|
|
|
|
|
[Tab.TabItemLeftEdge]
|
|
SizingMargins = 6, 6, 6, 6
|
|
ContentMargins = 0, 0, 0, 0
|
|
bgtype=imagefile
|
|
ImageFile = Metallic\tabItemLeft.bmp
|
|
imagecount=5
|
|
imagelayout=vertical
|
|
FillColorHint = 240 241 245; Tab average color (light grey)
|
|
BorderColorHint = 240 241 245; Edge color (grey)
|
|
AccentColorHint = 255 200 60; Rollover hilite color (orange)
|
|
|
|
|
|
|
|
[Tab.TabItemRightEdge]
|
|
SizingMargins = 6, 6, 6, 6
|
|
ContentMargins = 0, 0, 0, 0
|
|
bgtype=imagefile
|
|
ImageFile = Metallic\tabItemRight.bmp
|
|
imagecount=5
|
|
imagelayout=vertical
|
|
FillColorHint = 240 241 245; Tab average color (light grey)
|
|
BorderColorHint = 240 241 245; Edge color (grey)
|
|
AccentColorHint = 255 200 60; Rollover hilite color (orange)
|
|
|
|
|
|
|
|
[Tab.TabItemBothEdge]
|
|
SizingMargins = 6, 6, 6, 6
|
|
ContentMargins = 0, 0, 0, 0
|
|
bgtype=imagefile
|
|
ImageFile = Metallic\tabItemBoth.bmp
|
|
imagecount=5
|
|
imagelayout=vertical
|
|
FillColorHint = 240 241 245; Tab average color (light grey)
|
|
BorderColorHint = 240 241 245; Edge color (grey)
|
|
AccentColorHint = 255 200 60; Rollover hilite color (orange)
|
|
|
|
|
|
|
|
[Tab.TopTabItem]
|
|
SizingMargins = 6, 6, 6, 6
|
|
ContentMargins = 0, 0, 0, 0
|
|
bgtype=imagefile
|
|
ImageFile = Metallic\tabItemTop.bmp
|
|
imagecount=5
|
|
imagelayout=vertical
|
|
FillColorHint = 240 241 245; Tab average color (light grey)
|
|
BorderColorHint = 240 241 245; Edge color (grey)
|
|
AccentColorHint = 255 200 60; Rollover hilite color (orange)
|
|
|
|
|
|
|
|
[Tab.TopTabItemLeftEdge]
|
|
SizingMargins = 6, 6, 6, 6
|
|
ContentMargins = 0, 0, 0, 0
|
|
bgtype=imagefile
|
|
ImageFile = Metallic\tabItemTopLeft.bmp
|
|
imagecount=5
|
|
imagelayout=vertical
|
|
FillColorHint = 240 241 245; Tab average color (light grey)
|
|
BorderColorHint = 240 241 245; Edge color (grey)
|
|
AccentColorHint = 255 200 60; Rollover hilite color (orange)
|
|
|
|
|
|
|
|
[Tab.TopTabItemRightEdge]
|
|
SizingMargins = 6, 6, 6, 6
|
|
ContentMargins = 0, 0, 0, 0
|
|
bgtype=imagefile
|
|
ImageFile = Metallic\tabItemTopRight.bmp
|
|
imagecount=5
|
|
imagelayout=vertical
|
|
FillColorHint = 240 241 245; Tab average color (light grey)
|
|
BorderColorHint = 240 241 245; Edge color (grey)
|
|
AccentColorHint = 255 200 60; Rollover hilite color (orange)
|
|
|
|
|
|
|
|
[Tab.TopTabItemBothEdge]
|
|
SizingMargins = 6, 6, 6, 6
|
|
ContentMargins = 0, 0, 0, 0
|
|
bgtype=imagefile
|
|
ImageFile = Metallic\tabItemTopBoth.bmp
|
|
imagecount=5
|
|
imagelayout=vertical
|
|
FillColorHint = 240 241 245; Tab average color (light grey)
|
|
BorderColorHint = 240 241 245; Edge color ( grey)
|
|
AccentColorHint = 255 200 60; Rollover hilite color (orange)
|
|
|
|
|
|
|
|
[Tab.Body]
|
|
bgtype = imagefile
|
|
stockImageFile = Metallic\TabBackground.bmp
|
|
FillColorHint = 247 247 249; Light tab background color (very light grey)
|
|
|
|
ImageSelectType = Dpi ; choose src image by DPI of target DC (vs. theme DPI)
|
|
TrueSizeScalingType = Dpi
|
|
TrueSizeStretchMark = 50; start stretching when target exceeds source size by 50%
|
|
ImageFile1=Metallic\TabBackground.bmp
|
|
ImageFile2=Metallic\TabBackground133.bmp
|
|
MinDpi1=96
|
|
MinDpi2=164
|
|
|
|
;----------- trackbar --------------------------------
|
|
;Volume sliders, etc.
|
|
[TrackBar]
|
|
bgType = borderFill
|
|
fillType = Solid
|
|
fillColor = 235 235 228
|
|
bordersize = 1
|
|
borderColor = 235 235 228
|
|
|
|
;The movable part of a horizontal slider (TBS_BOTH style)
|
|
[TrackBar.Thumb]
|
|
bgtype=imagefile
|
|
ImageFile = Metallic\TrackbarHorizontal.bmp
|
|
imagecount=5
|
|
imagelayout = vertical
|
|
SizingMargins = 3, 4, 3, 4
|
|
sizingtype = tile
|
|
FillColorHint = 240 241 245; Average background color (light grey)
|
|
BorderColorHint = 240 241 245; Edge color (grey)
|
|
AccentColorHint = 71 196 70; Rollover color (green)
|
|
|
|
|
|
;The movable part of a horizontal slider (TBS_TOP style)
|
|
[TrackBar.ThumbTop]
|
|
bgtype=imagefile
|
|
imagecount=5
|
|
imagelayout = vertical
|
|
transparent=true
|
|
sizingtype = truesize
|
|
transparentcolor= 242 241 231
|
|
FillColorHint = 240 241 245; Average background color (light grey)
|
|
BorderColorHint = 240 241 245; Edge color (grey)
|
|
AccentColorHint = 71 196 70; Rollover color (green)
|
|
|
|
|
|
|
|
;----- the three sizes ----
|
|
ImageSelectType = Dpi ; choose src image by DPI of target DC (vs. theme DPI)
|
|
TrueSizeScalingType = Dpi
|
|
TrueSizeStretchMark = 50; start stretching when target exceeds source size by 50%
|
|
UniformSizing = true ; if you must stretch, do width & height equally
|
|
ImageFile1=Metallic\TrackBarUp13.bmp
|
|
ImageFile2=Metallic\TrackBarUp16.bmp
|
|
ImageFile3=Metallic\TrackBarUp25.bmp
|
|
MinDpi1=96
|
|
MinDpi2=118
|
|
MinDpi3=185
|
|
|
|
|
|
;The movable part of a horizontal slider (TBS_BOTTOM style)
|
|
[TrackBar.ThumbBottom]
|
|
bgtype=imagefile
|
|
imagecount=5
|
|
transparent=true
|
|
SizingMargins = 3, 6, 6, 10
|
|
sizingtype = truesize
|
|
transparentcolor= 242 241 231
|
|
ImageLayout = vertical
|
|
FillColorHint = 240 241 245; Average background color (light grey)
|
|
BorderColorHint = 240 241 245; Edge color (grey)
|
|
AccentColorHint = 71 196 70; Rollover color (green)
|
|
|
|
|
|
;----- the three sizes ----
|
|
ImageSelectType = Dpi ; choose src image by DPI of target DC (vs. theme DPI)
|
|
TrueSizeScalingType = Dpi
|
|
TrueSizeStretchMark = 50; start stretching when target exceeds source size by 50%
|
|
UniformSizing = true ; if you must stretch, do width & height equally
|
|
ImageFile1=Metallic\TrackBarDown13.bmp
|
|
ImageFile2=Metallic\TrackBarDown16.bmp
|
|
ImageFile3=Metallic\TrackBarDown25.bmp
|
|
MinDpi1=96
|
|
MinDpi2=118
|
|
MinDpi3=185
|
|
|
|
;The movable part of a vertical slider (TBS_BOTH style)
|
|
[TrackBar.ThumbVert]
|
|
bgtype=imagefile
|
|
ImageFile = Metallic\TrackbarVertical.bmp
|
|
SizingMargins = 3, 4, 3, 4
|
|
sizingtype = tile
|
|
imagecount=5
|
|
ImageLayout = vertical
|
|
FillColorHint = 240 241 245; Average background color (light grey)
|
|
BorderColorHint = 240 241 245; Edge color (grey)
|
|
AccentColorHint = 71 196 70; Rollover color (green)
|
|
|
|
|
|
;The movable part of a vertical slider (TBS_LEFT style)
|
|
[TrackBar.ThumbLeft]
|
|
bgtype=imagefile
|
|
sizingtype = truesize
|
|
imagecount=5
|
|
transparent=true
|
|
transparentcolor= 242 241 231
|
|
ImageLayout = vertical
|
|
FillColorHint = 240 241 245; Average background color (light grey)
|
|
BorderColorHint = 240 241 245; Edge color (grey)
|
|
AccentColorHint = 71 196 70; Rollover color (green)
|
|
|
|
|
|
;----- the three sizes ----
|
|
ImageSelectType = Dpi ; choose src image by DPI of target DC (vs. theme DPI)
|
|
TrueSizeScalingType = Dpi
|
|
TrueSizeStretchMark = 50; start stretching when target exceeds source size by 50%
|
|
UniformSizing = true ; if you must stretch, do width & height equally
|
|
ImageFile1=Metallic\TrackBarLeft13.bmp
|
|
ImageFile2=Metallic\TrackBarLeft16.bmp
|
|
ImageFile3=Metallic\TrackBarLeft25.bmp
|
|
MinDpi1=96
|
|
MinDpi2=118
|
|
MinDpi3=185
|
|
|
|
;The movable part of a vertical slider (TBS_RIGHT style)
|
|
[TrackBar.ThumbRight]
|
|
bgtype=imagefile
|
|
ImageFile = Metallic\TrackbarRight13.bmp
|
|
sizingtype = truesize
|
|
imagecount=5
|
|
transparent=true
|
|
transparentcolor= 242 241 231
|
|
ImageLayout = vertical
|
|
FillColorHint = 240 241 245; Average background color (light grey)
|
|
BorderColorHint = 240 241 245; Edge color (grey)
|
|
AccentColorHint = 71 196 70; Rollover color (green)
|
|
|
|
|
|
|
|
;----- the three sizes ----
|
|
ImageSelectType = Dpi ; choose src image by DPI of target DC (vs. theme DPI)
|
|
TrueSizeScalingType = Dpi
|
|
TrueSizeStretchMark = 50; start stretching when target exceeds source size by 50%
|
|
UniformSizing = true ; if you must stretch, do width & height equally
|
|
ImageFile1=Metallic\TrackBarRight13.bmp
|
|
ImageFile2=Metallic\TrackBarRight16.bmp
|
|
ImageFile3=Metallic\TrackBarRight25.bmp
|
|
MinDpi1=96
|
|
MinDpi2=118
|
|
MinDpi3=185
|
|
|
|
;The track along which a slidermoves
|
|
[TrackBar.Track]
|
|
bgtype=imagefile
|
|
ImageFile = Metallic\sliderTrack.bmp
|
|
imagecount=1
|
|
sizingtype = stretch
|
|
SizingMargins = 2, 2, 2, 2
|
|
FillColorHint = 240 241 245; Average background color (light grey)
|
|
BorderColorHint = 240 241 245; Average background color (grey)
|
|
|
|
|
|
;The vertical track along which a slider moves
|
|
[TrackBar.TrackVert]
|
|
bgtype=imagefile
|
|
ImageFile = Metallic\sliderTrack.bmp
|
|
imagecount=1
|
|
sizingtype = stretch
|
|
SizingMargins = 2, 2, 2, 2
|
|
FillColorHint = 240 241 245; Average background color (light grey)
|
|
BorderColorHint = 119 119 92; Edge color (dark grey)
|
|
|
|
|
|
;Set the color of the tickmarks drawn for the slider
|
|
[TrackBar.Tics]
|
|
color=161 161 146
|
|
|
|
;Set the color of the tickmarks drawn for the vertical slider
|
|
[TrackBar.TicsVert]
|
|
color=161 161 146
|
|
|
|
|
|
|
|
|
|
;----------- tooltip --------------------------------
|
|
;Set the color or image background for tooltips
|
|
[Tooltip.Close]
|
|
BgType = ImageFile
|
|
ImageFile = Metallic\BalloonClose.bmp
|
|
imagecount=3
|
|
sizingtype = truesize
|
|
Imagelayout = vertical
|
|
|
|
|
|
|
|
;-------------- Windows ------------------------
|
|
[Window]
|
|
BgType = ImageFile
|
|
Transparent = true
|
|
TextShadowOffset = 1,1
|
|
TextShadowColor = 199 194 209
|
|
|
|
[Window.Caption]
|
|
ImageFile = Metallic\Framecaption.bmp
|
|
SizingMargins = 28, 35, 9, 17
|
|
ContentMargins = 1, 1, 1, 1
|
|
CaptionMargins = 4, 3, 0, 0
|
|
SizingType = stretch
|
|
Imagelayout = vertical
|
|
ImageCount=2
|
|
Transparent = True
|
|
FillColorHint = 164 163 190; Average background color (strong grey)
|
|
|
|
|
|
[Window.Caption(active)]
|
|
TextShadowType = Single
|
|
|
|
[Window.CaptionSizingTemplate]
|
|
ImageFile = Metallic\FrameCaptionSizing.bmp
|
|
SizingMargins = 28, 35, 9, 17
|
|
ContentMargins = 18, 18, 26, 0
|
|
SizingType = tile
|
|
Imagelayout = vertical
|
|
ImageCount=2
|
|
Transparent = True
|
|
TransparentColor = 0 0 0
|
|
|
|
[Window.SmallCaption]
|
|
ImageFile = Metallic\SmallFrameCaption.bmp
|
|
SizingMargins = 24, 37, 3, 15
|
|
ContentMargins = 1, 1, 1, 1
|
|
SizingType = tile
|
|
Imagelayout = vertical
|
|
ImageCount=2
|
|
FillColorHint = 164 163 190; Average background color (strong grey)
|
|
|
|
|
|
[Window.SmallCaptionSizingTemplate]
|
|
ImageFile = Metallic\SmallFrameCaptionSizing.bmp
|
|
SizingMargins = 24, 37, 9, 8
|
|
ContentMargins = 14, 14, 16, 0
|
|
SizingType = tile
|
|
Imagelayout = vertical
|
|
ImageCount=2
|
|
Transparent = True
|
|
TransparentColor = 0 0 0
|
|
|
|
;The representation of a minimized window in and MDI application
|
|
[Window.MinCaption]
|
|
ImageFile = Metallic\FrameCaptionMin.bmp
|
|
ImageCount = 2
|
|
ImageLayout = vertical
|
|
SizingType = stretch
|
|
SizingMargins = 23, 26, 12, 8
|
|
ContentMargins = 3, 3, 0, 3
|
|
CaptionMargins = 4, 3, 0, 0
|
|
FillColorHint = 164 163 190; Average background color (strong grey)
|
|
|
|
|
|
;Shows as a strip at the top of a window when an application is maximized, rather than as a frame
|
|
;surrounding the window
|
|
[Window.MaxCaption]
|
|
ImageFile = Metallic\FrameMaximized.bmp
|
|
SizingMargins = 28, 35, 9, 17
|
|
ContentMargins = 1, 1, 1, 1
|
|
SizingType = stretch
|
|
SizingType = Tile
|
|
Imagelayout = vertical
|
|
ImageCount=2
|
|
CaptionMargins = 10, 3, 4, 2
|
|
ContentAlignment = left
|
|
FillColorHint = 164 163 190; Average background color (strong grey)
|
|
|
|
|
|
[Window.MaxCaption(Active)]
|
|
TextShadowType = Single
|
|
|
|
[Window.FrameLeft]
|
|
ImageFile = Metallic\frameLeft.bmp
|
|
SizingMargins = 1, 1, 0, 0
|
|
SizingType = stretch
|
|
ImageLayout = vertical
|
|
ImageCount = 2
|
|
Transparent = FALSE
|
|
Borderonly = FALSE
|
|
|
|
[Window.FrameRight]
|
|
ImageFile = Metallic\frameRight.bmp
|
|
SizingMargins = 1, 1, 0, 0
|
|
;ContentMargins = 1, 3, 0, 3
|
|
SizingType = stretch
|
|
ImageLayout = vertical
|
|
ImageCount = 2
|
|
Transparent = FALSE
|
|
Borderonly = FALSE
|
|
|
|
[Window.FrameBottom]
|
|
ImageFile = Metallic\frameBottom.bmp
|
|
SizingMargins = 5, 5, 1, 2
|
|
SizingType = stretch
|
|
ImageLayout = vertical
|
|
ImageCount = 2
|
|
Transparent = FALSE
|
|
Borderonly = FALSE
|
|
|
|
[Window.SmallFrameLeft]
|
|
ImageFile = Metallic\frameLeft.bmp
|
|
SizingMargins = 1, 2, 0, 0
|
|
SizingType = stretch
|
|
ImageLayout = vertical
|
|
ImageCount = 2
|
|
Transparent = FALSE
|
|
Borderonly = FALSE
|
|
|
|
[Window.SmallFrameRight]
|
|
ImageFile = Metallic\frameRight.bmp
|
|
SizingMargins = 1, 2, 0, 0
|
|
SizingType = stretch
|
|
ImageLayout = vertical
|
|
ImageCount = 2
|
|
Transparent = FALSE
|
|
Borderonly = FALSE
|
|
|
|
[Window.SmallFrameBottom]
|
|
ImageFile = Metallic\frameBottom.bmp
|
|
SizingMargins = 5, 5, 1, 2
|
|
SizingType = stretch
|
|
ImageLayout = vertical
|
|
ImageCount = 2
|
|
Transparent = FALSE
|
|
Borderonly = FALSE
|
|
|
|
;Background for dialog boxes
|
|
|
|
[Window.dialog]
|
|
bgType = BorderFill
|
|
FillColor = 255 0 0
|
|
BorderColor = 255 233 216
|
|
|
|
|
|
;Close button in Window titlebar
|
|
[Window.CloseButton]
|
|
BgType = ImageFile
|
|
SizingMargins = 5, 5, 5, 5
|
|
ContentMargins = 2, 2, 2, 2
|
|
sizingType = Stretch
|
|
ImageFile = Metallic\CloseButton.bmp
|
|
GlyphType = ImageGlyph
|
|
GlyphTransparent = True
|
|
ImageCount = 8
|
|
ImageLayout = Vertical
|
|
OffsetType = TopRight
|
|
Offset = -25, 5
|
|
FillColorHint = 228 93 61; Close box average color (brick red)
|
|
BorderColorHint = 255 255 255; Edge color (white)
|
|
|
|
|
|
;----- glyphs ----
|
|
ImageSelectType = size ; choose src image by DPI of target DC (vs. theme DPI)
|
|
UniformSizing = true ; if you must stretch, do width & height equally
|
|
ImageFile1=metallic\CloseGlyph6.bmp
|
|
ImageFile2=metallic\CloseGlyph9.bmp
|
|
ImageFile3=metallic\CloseGlyph.bmp
|
|
ImageFile4=metallic\CloseGlyph19.bmp
|
|
ImageFile5=metallic\CloseGlyph23.bmp
|
|
MinDpi1=96
|
|
MinDpi2=126
|
|
MinDpi3=170
|
|
|
|
|
|
|
|
;Maximize button in window titlebar
|
|
[Window.MaxButton]
|
|
BgType = ImageFile
|
|
SizingMargins = 5, 5, 5, 5
|
|
ContentMargins = 2, 2, 2, 2
|
|
sizingType = Stretch
|
|
ImageFile = Metallic\CaptionButton.bmp
|
|
GlyphType = ImageGlyph
|
|
GlyphTransparent = True
|
|
ImageCount = 8
|
|
ImageLayout=Vertical
|
|
OffsetType = TopRight
|
|
Offset = -49, 5
|
|
FillColorHint = 177 183 187; Titlebar button color (grey)
|
|
BorderColorHint = 255 255 255; Edge color (white)
|
|
|
|
|
|
;----- glyphs ----
|
|
ImageSelectType = size ; choose src image by DPI of target DC (vs. theme DPI)
|
|
UniformSizing = true ; if you must stretch, do width & height equally
|
|
ImageFile1=metallic\MaximizeGlyph6.bmp
|
|
ImageFile2=metallic\MaximizeGlyph9.bmp
|
|
ImageFile3=metallic\MaximizeGlyph.bmp
|
|
ImageFile4=metallic\MaximizeGlyph19.bmp
|
|
ImageFile5=metallic\MaximizeGlyph23.bmp
|
|
MinDpi1=96
|
|
MinDpi2=126
|
|
MinDpi3=170
|
|
|
|
;Restore button in window titlebar
|
|
[Window.RestoreButton]
|
|
BgType = ImageFile
|
|
SizingMargins = 5, 5, 5, 5
|
|
ContentMargins = 2, 2, 2, 2
|
|
sizingType = Stretch
|
|
ImageFile = Metallic\CaptionButton.bmp
|
|
GlyphType = ImageGlyph
|
|
GlyphTransparent = True
|
|
ImageCount = 8
|
|
ImageLayout=Vertical
|
|
OffsetType = TopRight
|
|
Offset = -49, 5
|
|
FillColorHint = 177 183 187; Titlebar button color (grey)
|
|
BorderColorHint = 255 255 255; Edge color (white)
|
|
|
|
|
|
;----- glyphs ----
|
|
ImageSelectType = size ; choose src image by DPI of target DC (vs. theme DPI)
|
|
UniformSizing = true ; if you must stretch, do width & height equally
|
|
ImageFile1=metallic\RestoreGlyph6.bmp
|
|
ImageFile2=metallic\RestoreGlyph9.bmp
|
|
ImageFile3=metallic\RestoreGlyph.bmp
|
|
ImageFile4=metallic\RestoreGlyph19.bmp
|
|
ImageFile5=metallic\RestoreGlyph23.bmp
|
|
MinDpi1=96
|
|
MinDpi2=126
|
|
MinDpi3=170
|
|
|
|
;Minimize button in window titlebar
|
|
[Window.MinButton]
|
|
BgType = ImageFile
|
|
SizingMargins = 5, 5, 5, 5
|
|
ContentMargins = 2, 2, 2, 2
|
|
sizingType = Stretch
|
|
ImageFile = Metallic\CaptionButton.bmp
|
|
GlyphType = ImageGlyph
|
|
GlyphTransparent = True
|
|
ImageCount = 8
|
|
ImageLayout=Vertical
|
|
OffsetType = TopRight
|
|
Offset = -73, 5
|
|
FillColorHint = 177 183 187; Titlebar button color (grey)
|
|
BorderColorHint = 255 255 255; Edge color (white)
|
|
|
|
|
|
;----- glyphs ----
|
|
ImageSelectType = size ; choose src image by DPI of target DC (vs. theme DPI)
|
|
UniformSizing = true ; if you must stretch, do width & height equally
|
|
ImageFile1=metallic\MinimizeGlyph6.bmp
|
|
ImageFile2=metallic\MinimizeGlyph9.bmp
|
|
ImageFile3=metallic\MinimizeGlyph.bmp
|
|
ImageFile4=metallic\MinimizeGlyph19.bmp
|
|
ImageFile5=metallic\MinimizeGlyph23.bmp
|
|
MinDpi1=96
|
|
MinDpi2=126
|
|
MinDpi3=170
|
|
|
|
|
|
;Help button in window titlebar--normally only appears on dialog windows
|
|
[Window.HelpButton]
|
|
BgType = ImageFile
|
|
SizingMargins = 5, 5, 5, 5
|
|
ContentMargins = 2, 2, 2, 2
|
|
sizingType = Stretch
|
|
ImageFile = Metallic\CaptionButton.bmp
|
|
GlyphType = ImageGlyph
|
|
GlyphTransparent = True
|
|
ImageCount = 8
|
|
ImageLayout=Vertical
|
|
OffsetType = TopRight
|
|
Offset = -73, 5
|
|
MirrorImage = true ; don't remove this (must specify to be localizable)
|
|
FillColorHint = 177 183 187; Titlebar button color (grey)
|
|
BorderColorHint = 255 255 255; Edge color (white)
|
|
|
|
|
|
;----- glyphs ----
|
|
ImageSelectType = size ; choose src image by DPI of target DC (vs. theme DPI)
|
|
UniformSizing = true ; if you must stretch, do width & height equally
|
|
ImageFile1=metallic\HelpGlyph6.bmp
|
|
ImageFile2=metallic\HelpGlyph9.bmp
|
|
ImageFile3=metallic\HelpGlyph.bmp
|
|
ImageFile4=metallic\HelpGlyph19.bmp
|
|
ImageFile5=metallic\HelpGlyph23.bmp
|
|
MinDpi1=96
|
|
MinDpi2=126
|
|
MinDpi3=170
|
|
|
|
|
|
;The Titlebar icon, next to the window title
|
|
[Window.SysButton]
|
|
OffsetType = TopLeft
|
|
Offset = 10, 3
|
|
|
|
;Close button for palette windows
|
|
[Window.SmallCloseButton]
|
|
BgType = ImageFile
|
|
SizingMargins = 5, 5, 5, 5
|
|
ContentMargins = 0, 0, 0, 0
|
|
sizingType = Stretch
|
|
ImageFile = Metallic\SmallCloseButton.bmp
|
|
GlyphType = ImageGlyph
|
|
GlyphImageFile = Metallic\SmallCloseGlyph.bmp
|
|
GlyphTransparent = True
|
|
ImageCount = 8
|
|
ImageLayout = Vertical
|
|
OffsetType = TopRight
|
|
Offset = -16, 3
|
|
FillColorHint = 228 93 61; Close box average color (brick red)
|
|
BorderColorHint = 255 255 255; Edge color (white)
|
|
|
|
|
|
;Close button for a maximized MDI window
|
|
[Window.MDICloseButton]
|
|
BgType = ImageFile
|
|
sizingType = stretch
|
|
ImageFile = Metallic\MDICaptionButton.bmp
|
|
ImageCount=4
|
|
ImageLayout = Vertical
|
|
SizingMargins = 4, 4, 4, 4
|
|
ContentMargins = 0, 0, 0, 0
|
|
OffsetType = TopRight
|
|
Offset = -19, 1
|
|
GlyphType = ImageGlyph
|
|
GlyphImageFile = Metallic\MDIGlyphClose.bmp
|
|
GlyphTransparent= true
|
|
FillColorHint = 240 241 245; Average background color (light grey)
|
|
BorderColorHint = 255 255 255; Edge color (white)
|
|
|
|
|
|
;Restore button for a maximized MDI window
|
|
[Window.MDIRestoreButton]
|
|
BgType = ImageFile
|
|
sizingType = stretch
|
|
ImageFile = Metallic\MDICaptionButton.bmp
|
|
ImageCount=4
|
|
ImageLayout = Vertical
|
|
SizingMargins = 4, 4, 4, 4
|
|
ContentMargins = 0, 0, 0, 0
|
|
OffsetType = TopRight
|
|
Offset = -37, 1
|
|
GlyphType = ImageGlyph
|
|
GlyphImageFile = Metallic\MDIGlyphRestore.bmp
|
|
GlyphTransparent= true
|
|
FillColorHint = 240 241 245; Average background color (light grey)
|
|
BorderColorHint = 255 255 255; Edge color (white)
|
|
|
|
|
|
|
|
;Minimize button for a maximized MDI window
|
|
[Window.MDIMinButton]
|
|
BgType = ImageFile
|
|
sizingType = stretch
|
|
ImageFile = Metallic\MDICaptionButton.bmp
|
|
ImageCount=4
|
|
ImageLayout = Vertical
|
|
SizingMargins = 4, 4, 4, 4
|
|
ContentMargins = 0, 0, 0, 0
|
|
OffsetType = TopRight
|
|
Offset = -53, 1
|
|
GlyphType = ImageGlyph
|
|
GlyphImageFile = Metallic\MDIGlyphMinimize.bmp
|
|
GlyphTransparent= true
|
|
FillColorHint = 240 241 245; Average background color (light grey)
|
|
BorderColorHint = 255 255 255; Edge color (white)
|
|
|
|
|
|
;-------------- Start Panel -------------------
|
|
[StartPanel]
|
|
bgtype = none
|
|
DefaultPaneSize = 0, 0, 380, 440
|
|
|
|
[StartPanel.UserPane]
|
|
UserPicture = True
|
|
ImageLayout = Horizontal
|
|
TextColor = 255 255 255
|
|
Font = ##StartPanelFont
|
|
DefaultPaneSize = 0, 0, 380, 64
|
|
BgType = Imagefile
|
|
Transparent = True
|
|
ImageFile = Metallic\StartUserPanel.bmp
|
|
Imagecount = 1
|
|
SizingMargins = 59, 60, 62, 0
|
|
sizingType = Stretch
|
|
TEXTSHADOWOFFSET= 2, 2
|
|
textshadowcolor = 31 34 38
|
|
TextShadowType = continuous
|
|
FillColorHint = 206 206 219; Average background (grey)
|
|
|
|
|
|
|
|
[StartPanel.UserPicture]
|
|
BgType = ImageFile
|
|
ImageFile = Metallic\UserTileBackground.bmp
|
|
Imagecount = 1
|
|
SizingType = Stretch
|
|
SizingMargins = 6, 10, 6, 10
|
|
ContentMargins = 8, 6, 8, 6
|
|
Transparent = true
|
|
FillColorHint = 240 241 245; Average Background (light grey)
|
|
|
|
|
|
|
|
[StartPanel.ProgList]
|
|
DefaultPaneSize = 0, 0, 190, 306
|
|
ContentMargins = 6 4 9 5
|
|
TextColor = 55 55 56
|
|
HotTracking = 48 112 208
|
|
CaptionText = 128 128 128
|
|
BgType = ImageFile
|
|
SizingType = Stretch
|
|
SizingMargins = 2, 153, 3, 0
|
|
sizingType = Stretch
|
|
ImageFile = Metallic\StartPanelMFUBackground.bmp
|
|
imagecount = 1
|
|
FillColorHint = 240 241 245; Average Background (light grey)
|
|
|
|
|
|
[StartPanel.ProgListSeparator]
|
|
BgType = ImageFile
|
|
SizingType = TrueSize
|
|
ImageFile = Metallic\StartProgramsSeparator.bmp
|
|
|
|
[StartPanel.MorePrograms]
|
|
DefaultPaneSize = 0, 0, 190, 30
|
|
TextColor = 55 55 56
|
|
HotTracking = 48 112 208
|
|
Font = ##Tahoma8Bold
|
|
BgType = ImageFile
|
|
SizingType = Stretch
|
|
SizingMargins = 3, 0, 0, 1
|
|
|
|
; left and right contentmargins should match proglist
|
|
ContentMargins = 8, 8, 0, 6
|
|
ImageFile = Metallic\StartPanelMoreProgBackGround.BMP
|
|
imagecount = 1
|
|
sizingType = Stretch
|
|
|
|
[StartPanel.MoreProgramsArrow]
|
|
BgType = ImageFile
|
|
SizingType = TrueSize
|
|
ImageFile = Metallic\StartPanelMoreProgArrow.bmp
|
|
ImageCount = 1
|
|
FillColorHint = 108 207 108; Average color (green)
|
|
|
|
|
|
[StartPanel.MoreProgramsArrow(hot)]
|
|
BgType = ImageFile
|
|
SizingType = TrueSize
|
|
ImageFile = Metallic\StartPanelMoreProgArrowHot.bmp
|
|
ImageCount = 1
|
|
FillColorHint = 107 239 107; Average color (bright green)
|
|
|
|
|
|
[StartPanel.PlacesList]
|
|
DefaultPaneSize = 0, 0, 190, 336
|
|
ContentMargins = 4 6 9 5
|
|
TextColor = 10 36 106
|
|
HotTracking = 80 150 248
|
|
BgType = imageFile
|
|
ImageFile = Metallic\StartPanelPlacesBackground.bmp
|
|
imagecount = 1
|
|
SizingMargins = 172, 7, 3, 1
|
|
sizingType = Stretch
|
|
FillColorHint = 240 241 245; Background color (light grey)
|
|
|
|
|
|
[StartPanel.PlacesListSeparator]
|
|
BgType = ImageFile
|
|
SizingType = TrueSize
|
|
ImageFile = Metallic\StartPlacesSeparator.bmp
|
|
|
|
[StartPanel.Logoff]
|
|
ContentMargins = 0, 0, 4, 2
|
|
DefaultPaneSize = 0, 0, 380, 40
|
|
TextColor = 0 0 0
|
|
HotTracking = 255 255 255
|
|
bgType = imagefile
|
|
ImageFile = Metallic\StartPanelLogoffBackground.bmp
|
|
imagecount = 1
|
|
sizingMargins = 49, 47, 0, 38
|
|
sizingType = Stretch
|
|
FillColorHint = 177 183 187; Background color (grey)
|
|
|
|
|
|
;; note that if you want transparent LogoffButtons they MUST be 32 bit
|
|
;; images with an alphachanel, not 8 or 24 bit images with a TransparentColor
|
|
[StartPanel.LogoffButtons]
|
|
BgType = ImageFile
|
|
Transparent = True
|
|
SizingType = TrueSize
|
|
ImageFile = Metallic\StartPanelLogoffButtons.bmp
|
|
ImageCount = 1
|
|
|
|
[StartPanel.LogoffButtons(hot)]
|
|
BgType = ImageFile
|
|
Transparent = True
|
|
SizingType = TrueSize
|
|
ImageFile = Metallic\StartPanelLogoffButtonsHot.bmp
|
|
ImageCount = 1
|
|
|
|
|
|
;-------------- Taskbar specific --------------
|
|
[Start::Button]
|
|
BgType = ImageFile
|
|
SizingType = Stretch
|
|
SizingMargins = 6, 52, 13, 14
|
|
ContentMargins = 10, 24, 2, 4
|
|
ImageFile = Metallic\StartButton.bmp
|
|
ImageCount = 3
|
|
ImageLayout = Vertical
|
|
Transparent = True
|
|
Font= ##StartButtonFont
|
|
TextColor = 255 255 255
|
|
TEXTSHADOWOFFSET= 2, 2
|
|
textshadowcolor = 69 76 16
|
|
TextShadowType = continuous
|
|
FillColorHint = 74 153 73; Average color (green)
|
|
|
|
|
|
[StartMenu::MenuBand]
|
|
TextColor = 0 0 0
|
|
|
|
[StartMenu::MenuBand(Hot)]
|
|
TextColor = 255 255 255
|
|
|
|
[StartMenu::MenuBand.NewAppButton]
|
|
BgType = ImageFile
|
|
SizingType = Stretch
|
|
SizingMargins = 6, 1, 0, 0
|
|
ContentMargins = 10, 0, 3, 0
|
|
ImageFile = Metallic\StartGroupNewAppButton.bmp
|
|
ImageCount = 1
|
|
Transparent = True
|
|
TransparentColor= 255 0 0
|
|
FillcolorHint = 254 234 182; Background newly installed app color (light orange)
|
|
|
|
|
|
[StartMenu::MenuBand.Seperator]
|
|
BgType = ImageFile
|
|
SizingType = Stretch
|
|
SizingMargins = 6, 1, 3, 0
|
|
ContentMargins = 10, 0, 3, 0
|
|
ImageFile = Metallic\StartGroupSeperator.bmp
|
|
ImageCount = 1
|
|
Transparent = True
|
|
TransparentColor= 255 0 0
|
|
FillColorHint = 211 211 200; Separator color (grey)
|
|
|
|
|
|
[StartMenu::Toolbar]
|
|
BgType = ImageFile
|
|
ImageFile = Metallic\StartGroupBackground.bmp
|
|
SizingType = Stretch
|
|
SizingMargins = 6, 5, 3, 4
|
|
ContentMargins = 0, 0, 0, 0
|
|
Font= ##Tahoma8
|
|
TextColor = 0 0 0
|
|
FillColorHint = 255 255 255; Background of More Programs menu (white)
|
|
AccentColorHint = 240 241 245; Left edge of More Programs menu (grey)
|
|
|
|
|
|
|
|
[StartMenu::Toolbar(Hot)]
|
|
TextColor = 255 255 255
|
|
|
|
[StartMenu::Toolbar.Button]
|
|
BgType = ImageFile
|
|
SizingType = Stretch
|
|
SizingMargins = 6, 1, 0, 0
|
|
ContentMargins = 10, 0, 3, 0
|
|
ImageFile = Metallic\StartGroupToolbarButton.bmp
|
|
ImageCount = 3
|
|
ImageLayout = vertical
|
|
Transparent = True
|
|
TransparentColor= 255 0 0
|
|
FillColorHint = 177 83 187; Rollover of item on More Programs menu (grey)
|
|
|
|
|
|
[TaskBar::Toolbar]
|
|
BgType = None
|
|
Font= ##Tahoma8
|
|
TextColor = 0 0 0
|
|
|
|
[TaskBar::Toolbar.Button]
|
|
BgType = ImageFile
|
|
SizingType = Stretch
|
|
SizingMargins = 4, 4, 16, 8
|
|
ContentMargins = 0, 0, 4, 4
|
|
ImageFile = Metallic\TaskBandButtonNoEdge.bmp
|
|
ImageCount = 6
|
|
ImageLayout = vertical
|
|
Transparent = True
|
|
FillColorHint = 177 183 187; Average background color (grey)
|
|
|
|
|
|
[TaskBar::Toolbar.DropdownButton]
|
|
BgType = ImageFile
|
|
|
|
SizingType = Stretch
|
|
SizingMargins = 4, 4, 16, 8
|
|
ContentMargins = 2, 0, 4, 4
|
|
ImageFile = Metallic\TaskBandButtonNoEdge.bmp
|
|
ImageCount = 6
|
|
ImageLayout = vertical
|
|
Transparent = True
|
|
FillColorHint = 177 183 187; Average background color (grey)
|
|
|
|
|
|
[TaskBarVert::Toolbar]
|
|
BgType = None
|
|
Font= ##Tahoma8
|
|
TextColor = 0 0 0
|
|
|
|
[TaskBar::Toolbar(checked)]
|
|
TextColor = 255 255 255
|
|
|
|
[TaskBar::Toolbar(pressed)]
|
|
TextColor = 255 255 255
|
|
|
|
[TaskBar::Toolbar(hotchecked)]
|
|
TextColor = 255 255 255
|
|
|
|
[TaskBarVert::Toolbar(checked)]
|
|
TextColor = 255 255 255
|
|
|
|
[TaskBarVert::Toolbar(pressed)]
|
|
TextColor = 255 255 255
|
|
|
|
[TaskBarVert::Toolbar(hotchecked)]
|
|
TextColor = 255 255 255
|
|
|
|
[TaskBarVert::Toolbar.Button]
|
|
BgType = ImageFile
|
|
SizingType = Stretch
|
|
SizingMargins = 4, 4, 15, 3
|
|
ContentMargins = 1, 1, 1, 1
|
|
ImageFile = Metallic\TaskBandButtonNoEdgeVertical.bmp
|
|
ImageCount = 6
|
|
ImageLayout = vertical
|
|
Transparent = True
|
|
FillColorHint = 177 183 187; Average background color (grey)
|
|
|
|
|
|
|
|
[TaskBarVert::Toolbar.DropdownButton]
|
|
BgType = ImageFile
|
|
SizingType = Stretch
|
|
SizingMargins = 4, 4, 15, 3
|
|
ContentMargins = 1, 1, 1, 1
|
|
ImageFile = Metallic\TaskBandButtonNoEdgeVertical.bmp
|
|
ImageCount = 6
|
|
ImageLayout = vertical
|
|
Transparent = True
|
|
FillColorHint = 177 183 187; ; Average background color (grey)
|
|
|
|
|
|
[TaskBar::Rebar]
|
|
BgType = None
|
|
Font= ##Tahoma8
|
|
TextColor = 0 0 0
|
|
|
|
[TaskBar::Rebar.Band]
|
|
BgType = None
|
|
|
|
[TaskBar::Rebar.Gripper]
|
|
BgType = ImageFile
|
|
SizingType = Tile
|
|
SizingMargins = 0, 0, 6, 4
|
|
ContentMargins = 2, 1, 0, 0
|
|
ImageFile = Metallic\TaskbarGripper.bmp
|
|
ImageCount = 1
|
|
Transparent = True
|
|
TransparentColor= 255 0 255
|
|
FillColorHint = 119 119 92; Gripper dot color (dark grey)
|
|
|
|
|
|
[TaskBar::Rebar.GripperVert]
|
|
BgType = ImageFile
|
|
SizingType = Tile
|
|
SizingMargins = 4, 6, 0, 0
|
|
ContentMargins = 0, 0, 2, 1
|
|
ImageFile = Metallic\TaskbarGripperVertical.bmp
|
|
ImageCount = 1
|
|
Transparent = True
|
|
TransparentColor= 255 0 255
|
|
FillColorHint = 119 119 92; Gripper dot color (dark grey)
|
|
|
|
|
|
[TaskBar::Rebar.Chevron]
|
|
BgType = ImageFile
|
|
SizingType = Stretch
|
|
SizingMargins = 4, 4, 16, 8
|
|
ContentMargins = 0, 0, 0, 10
|
|
ImageFile = Metallic\TaskBandButtonNoEdge.bmp
|
|
ImageCount = 6
|
|
ImageLayout = vertical
|
|
Transparent = True
|
|
GlyphType = ImageGlyph
|
|
GlyphImageFile = Metallic\TaskbarChevron.bmp
|
|
GlyphTransparent= true
|
|
VAlign = Top
|
|
FillColorHint = 255 255 255; Overflow glyph color (white)
|
|
|
|
|
|
[TaskBar::Rebar.ChevronVert]
|
|
BgType = ImageFile
|
|
SizingType = Stretch
|
|
SizingMargins = 4, 4, 15, 3
|
|
ContentMargins = 0, 0, 0, 0
|
|
ImageFile = Metallic\TaskBandButtonNoEdgeVertical.bmp
|
|
ImageCount = 6
|
|
ImageLayout = vertical
|
|
Transparent = True
|
|
GlyphType = ImageGlyph
|
|
GlyphImageFile = Metallic\TaskbarChevronVert.bmp
|
|
GlyphTransparent= true
|
|
FillColorHint = 255 255 255; Overflow glyph color (white)
|
|
|
|
TransparentColor= 255 0 255
|
|
|
|
[TaskBar.BackgroundBottom]
|
|
BgType = ImageFile
|
|
SizingType = Tile
|
|
SizingMargins = 0, 0, 17, 12
|
|
ImageFile = Metallic\TaskbarBackground.bmp
|
|
ImageCount = 1
|
|
FillColorHint = 168 169 191; Average background color (grey)
|
|
|
|
|
|
[TaskBar.SizingBarBottom]
|
|
BgType = ImageFile
|
|
SizingType = Tile
|
|
ImageFile = Metallic\TaskbarSizingBarBottom.bmp
|
|
ImageCount = 1
|
|
FillColorHint = 166 167 193; Average color (grey)
|
|
|
|
|
|
[TaskBar.BackgroundLeft]
|
|
BgType = ImageFile
|
|
SizingType = Tile
|
|
SizingMargins = 17, 12, 0, 0
|
|
ImageFile = Metallic\TaskbarBackgroundVertical.bmp
|
|
ImageCount = 1
|
|
FillColorHint = 177 183 187; Average background color (grey)
|
|
|
|
|
|
[TaskBar.SizingBarLeft]
|
|
BgType = ImageFile
|
|
SizingType = Tile
|
|
ImageFile = Metallic\TaskbarSizingBarLeft.bmp
|
|
ImageCount = 1
|
|
FillColorHint = 166 167 193; Average color (grey)
|
|
|
|
|
|
[TaskBar.BackgroundTop]
|
|
BgType = ImageFile
|
|
SizingType = Tile
|
|
SizingMargins = 0, 0, 17, 12
|
|
ImageFile = Metallic\TaskbarBackground.bmp
|
|
ImageCount = 1
|
|
FillColorHint = 177 183 187; Average background color (grey)
|
|
|
|
|
|
[TaskBar.SizingBarTop]
|
|
BgType = ImageFile
|
|
SizingType = Tile
|
|
ImageFile = Metallic\TaskbarSizingBarTop.bmp
|
|
ImageCount = 1
|
|
FillColorHint = 166 167 193; Average color (gret)
|
|
|
|
|
|
[TaskBar.BackgroundRight]
|
|
BgType = ImageFile
|
|
SizingType = Tile
|
|
SizingMargins = 17, 12, 0, 0
|
|
ImageFile = Metallic\TaskbarBackgroundVertical.bmp
|
|
ImageCount = 1
|
|
FillColorHint = 177 183 187; Average background color (grey)
|
|
|
|
|
|
[TaskBar.SizingBarRight]
|
|
BgType = ImageFile
|
|
SizingType = Stretch
|
|
ImageFile = Metallic\TaskbarSizingBarRight.bmp
|
|
ImageCount = 1
|
|
FillColorHint = 166 167 193; Average color (grey)
|
|
|
|
|
|
;-------------- Taskband specific --------------
|
|
[TaskBand.FlashButton]
|
|
BgType = ImageFile
|
|
SizingType = Stretch
|
|
SizingMargins = 17, 6, 12, 12
|
|
ContentMargins = 0, 0, 4, 4
|
|
ImageFile = Metallic\TaskBandFlashButton.bmp
|
|
ImageCount = 1
|
|
ImageLayout = vertical
|
|
Transparent = True
|
|
FillColorHint = 218 219 229; Average background color (grey)
|
|
AccentColorHint = 255 192 91; Attention hilite color (orange)
|
|
|
|
TransparentColor= 255 0 255
|
|
|
|
[TaskBand.FlashButtonGroupMenu]
|
|
BgType = ImageFile
|
|
SizingType = Stretch
|
|
SizingMargins = 17, 5, 12, 7
|
|
ContentMargins = 0, 0, 4, 4
|
|
ImageFile = Metallic\TaskBandFlashButtonGroupMenu.bmp
|
|
ImageCount = 1
|
|
Transparent = True
|
|
FillColorHint = 218 219 229; Average background color (grey)
|
|
AccentColorHint = 255 192 91; Attention hilite color (orange)
|
|
TransparentColor= 255 0 0
|
|
|
|
[TaskBand.GroupCount]
|
|
Font= ##Tahoma8Bold
|
|
TextColor = 255 116 66
|
|
|
|
[TaskBand::Toolbar]
|
|
BgType = None
|
|
Font= ##Tahoma8
|
|
TextColor = 64 64 64
|
|
|
|
[TaskBand::Toolbar(checked)]
|
|
TextColor = 255 255 255
|
|
|
|
[TaskBand::Toolbar(pressed)]
|
|
TextColor = 255 255 255
|
|
|
|
[TaskBand::Toolbar(hotchecked)]
|
|
TextColor = 255 255 255
|
|
|
|
[TaskBand::Toolbar.Button]
|
|
BgType = ImageFile
|
|
SizingType = Stretch
|
|
SizingMargins = 17, 5, 15, 8
|
|
ContentMargins = 0, 4, 4, 4
|
|
ImageFile = Metallic\TaskBandButton.bmp
|
|
ImageCount = 6
|
|
ImageLayout = vertical
|
|
Transparent = True
|
|
FillColorHint = 218 219 229; Average background color (grey)
|
|
|
|
|
|
[TaskBand::Toolbar.DropdownButton]
|
|
BgType = ImageFile
|
|
SizingType = Stretch
|
|
SizingMargins = 17, 5, 15, 8
|
|
ContentMargins = 0, 4, 4, 4
|
|
ImageFile = Metallic\TaskBandButton.bmp
|
|
ImageCount = 6
|
|
ImageLayout = vertical
|
|
Transparent = True
|
|
FillColorHint = 218 219 229; Average background color (grey)
|
|
|
|
|
|
|
|
|
|
[TaskBandVert::Toolbar]
|
|
BgType = None
|
|
Font= ##Tahoma8
|
|
TextColor = 0 0 0
|
|
|
|
[TaskBandVert::Toolbar(checked)]
|
|
TextColor = 255 255 255
|
|
|
|
[TaskBandVert::Toolbar(pressed)]
|
|
TextColor = 255 255 255
|
|
|
|
[TaskBandVert::Toolbar(hotchecked)]
|
|
TextColor = 255 255 255
|
|
|
|
[TaskBandVert::Toolbar.Button]
|
|
BgType = ImageFile
|
|
SizingType = Stretch
|
|
SizingMargins = 16, 7, 12, 6
|
|
ContentMargins = 0, 4, 4, 4
|
|
ImageFile = Metallic\TaskBandButtonVertical.bmp
|
|
ImageCount = 6
|
|
ImageLayout = vertical
|
|
Transparent = True
|
|
FillColorHint = 218 219 229; Average background color (grey)
|
|
|
|
|
|
[TaskBandVert::Toolbar.DropdownButton]
|
|
BgType = ImageFile
|
|
SizingType = Stretch
|
|
SizingMargins = 16, 7, 12, 6
|
|
ContentMargins = 0, 4, 4, 4
|
|
ImageFile = Metallic\TaskBandButtonVertical.bmp
|
|
ImageCount = 6
|
|
ImageLayout = vertical
|
|
Transparent = True
|
|
FillColorHint = 218 219 229; Average background color (grey)
|
|
|
|
|
|
[TaskBand::ScrollBar.ArrowBtn]
|
|
BgType = ImageFile
|
|
SizingMargins = 5, 5, 5, 5
|
|
ContentMargins = 0, 0, 0, 0
|
|
SizingType = Stretch
|
|
ImageFile = Metallic\TaskbandScrollArrows.bmp
|
|
ImageCount = 16
|
|
ImageLayout = Vertical
|
|
GlyphType = ImageGlyph
|
|
GlyphImageFile = Metallic\TaskBandScrollArrowGlyphs.bmp
|
|
GlyphTransparent = True
|
|
FillColorHint = 119 119 92; Average background color (dark grey)
|
|
|
|
|
|
|
|
[TaskBand::Scrollbar.ThumbBtnHorz]
|
|
BgType = ImageFile
|
|
SizingMargins = 5, 5, 5, 5
|
|
ContentMargins = 4, 4, 0, 0
|
|
ImageFile = Metallic\TaskBandScrollThumbHorizontal.bmp
|
|
ImageCount = 4
|
|
ImageLayout = Vertical
|
|
FillColorHint = 119 119 92; Average background color (dark grey)
|
|
|
|
|
|
;A visual element in the middle of the scrollbar thumb
|
|
[TaskBand::Scrollbar.GripperHorz]
|
|
BgType = ImageFile
|
|
SizingType = TrueSize
|
|
ImageFile = Metallic\TaskBandScrollThumbGripperHorizontal.BMP
|
|
imagelayout = vertical
|
|
Transparent = True
|
|
ImageCount = 4
|
|
FillColorHint = 177 183 187; Thumb gripper lighter color (grey)
|
|
|
|
|
|
; Scrollbar Thumb (vertical)
|
|
[TaskBand::Scrollbar.ThumbBtnVert]
|
|
BgType = ImageFile
|
|
SizingMargins = 5, 5, 5, 5
|
|
ContentMargins = 0, 0, 4, 4
|
|
ImageFile = Metallic\TaskBandScrollThumbVertical.bmp
|
|
ImageCount = 4
|
|
ImageLayout = vertical
|
|
Transparent = True
|
|
TransparentColor= 255 0 255
|
|
|
|
;A visual element in the middle of the scrollbar thumb
|
|
[TaskBand::Scrollbar.GripperVert]
|
|
BgType = ImageFile
|
|
SizingType = TrueSize
|
|
ImageFile = Metallic\TaskBandScrollThumbGripperVertical.BMP
|
|
ImageCount = 4
|
|
Transparent = True
|
|
ImageLayout = Vertical
|
|
FillColorHint = 177 183 187; Thumb gripper lighter color (grey)
|
|
|
|
|
|
|
|
; Scrollbar Tracks (horizontal)
|
|
[TaskBand::Scrollbar.LowerTrackHorz]
|
|
BgType = imagefile
|
|
ImageFile = Metallic\TaskBandScrollShaftHorizontal.bmp
|
|
SizingMargins = 0, 0, 1, 1
|
|
ImageCount = 4
|
|
ImageLayout = Vertical
|
|
FillColorHint = 177 183 187; Average background color (grey)
|
|
|
|
|
|
|
|
[TaskBand::Scrollbar.UpperTrackHorz]
|
|
BgType = imagefile
|
|
ImageFile = Metallic\TaskBandScrollShaftHorizontal.bmp
|
|
SizingMargins = 0, 0, 1, 1
|
|
ImageCount = 4
|
|
ImageLayout = Vertical
|
|
FillColorHint = 240 241 245; Average background color (grey)
|
|
|
|
|
|
|
|
; Scrollbar Tracks (vertical)
|
|
[TaskBand::Scrollbar.LowerTrackVert]
|
|
BgType = imagefile
|
|
ImageFile = Metallic\TaskBandScrollShaftVertical.bmp
|
|
SizingMargins = 1, 1, 0, 0
|
|
ImageCount = 4
|
|
ImageLayout = Vertical
|
|
FillColorHint = 240 241 245; Average background color (grey)
|
|
|
|
|
|
|
|
[TaskBand::Scrollbar.UpperTrackVert]
|
|
BgType = imagefile
|
|
ImageFile = Metallic\TaskBandScrollShaftVertical.bmp
|
|
SizingMargins = 1, 1, 0, 0
|
|
ImageCount = 4
|
|
ImageLayout = Vertical
|
|
FillColorHint = 240 241 245; Average background color (grey)
|
|
|
|
|
|
;-------------- Taskband Group Menu specific --------------
|
|
[TaskBandGroupMenu::Toolbar]
|
|
BgType = ImageFile
|
|
ImageFile = Metallic\TaskBandBackground.bmp
|
|
SizingType = Tile
|
|
SizingMargins = 3, 3, 3, 3
|
|
ContentMargins = 9, 0, 0, 0
|
|
Font= ##Tahoma8
|
|
TextColor = 0 0 0
|
|
FillColorHint = 177 183 187; Average background color (grey)
|
|
AccentColorHint = 255 199 60; Menu top hilite color (orange)
|
|
|
|
|
|
|
|
[TaskBandGroupMenu::Toolbar.Button]
|
|
BgType = ImageFile
|
|
SizingType = stretch
|
|
SizingMargins = 3, 3, 0, 0
|
|
ContentMargins = 9, 0, 3, 3
|
|
ImageFile = Metallic\TaskBandHover.bmp
|
|
ImageCount = 3
|
|
ImageLayout = vertical
|
|
Transparent = True
|
|
TransparentColor= 255 0 0
|
|
|
|
;-------------- Tray Notify specific --------------
|
|
[TrayNotify::Toolbar]
|
|
BgType = None
|
|
|
|
[TrayNotify::Toolbar.Button]
|
|
BgType = None
|
|
|
|
[TrayNotifyHoriz::TrayNotify.Background]
|
|
BgType = ImageFile
|
|
SizingType = Stretch
|
|
SizingMargins = 34, 10, 12, 12
|
|
ContentMargins = 19, 7, 0, 0
|
|
ImageFile = Metallic\TaskbarTray.bmp
|
|
ImageCount = 1
|
|
Transparent = True
|
|
TransparentColor= 255 0 0
|
|
FillColorHint = 203 204 218; Average background color (grey)
|
|
|
|
|
|
[TrayNotifyHoriz::Button]
|
|
BgType = ImageFile
|
|
SizingType = TrueSize
|
|
ImageFile = Metallic\TrayChevronHorizontal.bmp
|
|
ImageCount = 3
|
|
Imagelayout = vertical
|
|
Transparent = True
|
|
TransparentColor= 255 0 255
|
|
|
|
[TrayNotifyHorizOpen::Button]
|
|
BgType = ImageFile
|
|
SizingType = TrueSize
|
|
ImageFile = Metallic\TrayChevronHorizontalOpen.bmp
|
|
ImageCount = 3
|
|
Imagelayout = vertical
|
|
Transparent = True
|
|
TransparentColor= 255 0 255
|
|
|
|
[TrayNotifyVert::TrayNotify.Background]
|
|
BgType = ImageFile
|
|
SizingType = Stretch
|
|
SizingMargins = 12, 12, 34, 10
|
|
ContentMargins = 0, 0, 19, 7
|
|
ImageFile = Metallic\TaskbarTrayVertical.bmp
|
|
ImageCount = 1
|
|
Transparent = True
|
|
TransparentColor= 255 0 0
|
|
FillColorHint = 203 204 218; Average background color (grey)
|
|
|
|
|
|
[TrayNotifyVert::Button]
|
|
BgType = ImageFile
|
|
SizingType = TrueSize
|
|
Transparent = True
|
|
ImageFile = Metallic\TrayChevronHorizontal.bmp
|
|
ImageCount = 3
|
|
Imagelayout = vertical
|
|
FillColorHint = 203 204 218; Average background color (grey)
|
|
|
|
|
|
[TrayNotifyVertOpen::Button]
|
|
BgType = ImageFile
|
|
SizingType = TrueSize
|
|
Transparent = True
|
|
ImageFile = Metallic\TrayChevronHorizontalOpen.bmp
|
|
ImageCount = 3
|
|
Imagelayout = vertical
|
|
FillColorHint = 203 204 218; Average background color (grey)
|
|
|
|
|
|
[TrayNotify::Clock]
|
|
Font= ##Tahoma8
|
|
TextColor = 0 0 0
|
|
|
|
;-------------- Application-specific ------------------------
|
|
|
|
|
|
;----------- places bar --------------------------------
|
|
;The places toolbar in the fileopen/save dialog.
|
|
[Placesbar::Toolbar]
|
|
SizingMargins = 4, 4, 4, 4
|
|
ContentMargins = 0, 0, 0, 0
|
|
ImageFile = Metallic\PlaceBarBackground.bmp
|
|
bgtype = imagefile
|
|
imageCount = 1
|
|
sizingType = tile
|
|
FillColorHint = 204 241 245; Background color (light grey)
|
|
|
|
|
|
[Placesbar::Toolbar.Button]
|
|
SizingMargins = 4, 4, 4, 4
|
|
ContentMargins = 0, 0, 4, 2
|
|
ImageFile = Metallic\PlaceBarButtons.bmp
|
|
bgtype = imagefile
|
|
imagelayout = vertical
|
|
imageCount = 6
|
|
sizingType = stretch
|
|
transparent = true
|
|
FillColorHint = 255 255 255; Selected color (white)
|
|
BorderColorHint = 177 183 187; Outline color (grey)
|
|
|
|
|
|
;----------- Explorer (IE) bar --------------------------------
|
|
[ExplorerBar]
|
|
BgType = BorderFill
|
|
FillType= VertGradient
|
|
GradientRatio1 = 0
|
|
GradientColor1 = 196 200 212
|
|
GradientRatio2 = 255
|
|
GradientColor2 = 177 179 200
|
|
BorderSize = 0
|
|
ContentMargins = 12, 12, 12, 12
|
|
|
|
[ExplorerBar.HeaderBackground]; Not used in IE 6
|
|
BgType = ImageFile
|
|
SizingType = Stretch
|
|
ImageFile = Metallic\ExplorerBarHeaderBackground.bmp
|
|
SizingMargins = 202, 1, 0, 0
|
|
Font= ##Tahoma8Bold
|
|
TextColor = 255 255 255
|
|
ContentMargins = 8, 8, 7, 7
|
|
FillColorHint = 177 183 187; Mid color of gradient (grey)
|
|
|
|
|
|
[ExplorerBar.HeaderClose]; Not used in IE 6
|
|
BgType = ImageFile
|
|
SizingType = TrueSize
|
|
ImageLayout = Vertical
|
|
ImageFile = Metallic\ExplorerBarHeaderClose.bmp
|
|
ImageCount = 3
|
|
Transparent = true
|
|
OffsetType = TopRight
|
|
Offset = -4, 4
|
|
FillColorHint = 138 168 229; Close box normal state (brick red)
|
|
AccentColorHint = 255 121 95; Close box rollover (brick red)
|
|
|
|
|
|
[ExplorerBar.HeaderPin]; Not used in IE 6
|
|
BgType = ImageFile
|
|
SizingType = TrueSize
|
|
ImageLayout = Vertical
|
|
ImageFile = Metallic\ExplorerBarHeaderPin.bmp
|
|
ImageCount = 6
|
|
Transparent = true
|
|
OffsetType = TopRight
|
|
Offset = -6, 4
|
|
FillColorHint = 177 183 187; Average pin color (grey)
|
|
|
|
|
|
[ExplorerBar.IEBarMenu]; Not used in IE 6
|
|
BgType = ImageFile
|
|
SizingType = TrueSize
|
|
ImageLayout = Vertical
|
|
ImageFile = Metallic\IE_PersonalBarMenu.bmp
|
|
ImageCount = 3
|
|
Transparent = true
|
|
OffsetType = TopRight
|
|
Offset = -3, 1
|
|
FillColorHint = 240 241 245; Average button background color (light grey blue)
|
|
BorderColorHint = 177 183 187; Border of button (grey)
|
|
|
|
|
|
[ExplorerBar.NormalGroupBackground]
|
|
BgType = ImageFile
|
|
FillColor = 240 241 245
|
|
BorderColor = 255 255 255
|
|
SizingType = Stretch
|
|
ImageFile = Metallic\NormalGroupBackground.bmp
|
|
SizingMargins = 3, 3, 3, 3
|
|
Font= ##Tahoma8
|
|
TextColor = 38 92 192
|
|
ContentMargins = 8, 8, 7, 7
|
|
|
|
[ExplorerBar.NormalGroupCollapse]
|
|
BgType = ImageFile
|
|
SizingType = TrueSize
|
|
ImageLayout = Vertical
|
|
ImageFile = Metallic\NormalGroupCollapse.bmp
|
|
ImageCount = 3
|
|
Transparent = true
|
|
OffsetType = TopRight
|
|
Offset = -3, 1
|
|
FillColorHint = 240 241 245; Average button background color (light grey)
|
|
BorderColorHint = 177 183 187; Border of button (grey)
|
|
|
|
|
|
[ExplorerBar.NormalGroupExpand]
|
|
BgType = ImageFile
|
|
SizingType = TrueSize
|
|
ImageLayout = Vertical
|
|
ImageFile = Metallic\NormalGroupExpand.bmp
|
|
ImageCount = 3
|
|
Transparent = true
|
|
OffsetType = TopRight
|
|
Offset = -3, 1
|
|
FillColorHint = 240 241 245; Average button background color (light grey)
|
|
BorderColorHint = 177 183 187; Border of button (grey)
|
|
|
|
|
|
[ExplorerBar.NormalGroupHead]
|
|
|
|
BgType = ImageFile
|
|
SizingType = Stretch
|
|
ImageFile = Metallic\NormalGroupHead.bmp
|
|
SizingMargins = 3, 106, 3, 1
|
|
Transparent = true
|
|
Font= ##Tahoma8Bold
|
|
TextColor = 38 92 192
|
|
ContentMargins = 8, 8, 7, 7
|
|
FillColorHint = 246 246 246; Lighter side of gradient (very light)
|
|
|
|
|
|
[ExplorerBar.SpecialGroupBackground]
|
|
BgType = ImageFile
|
|
SizingType = Stretch
|
|
ImageFile = Metallic\SpecialGroupBackground.bmp
|
|
SizingMargins = 3, 3, 3, 3
|
|
Font= ##Tahoma8
|
|
TextColor = 38 92 192
|
|
ContentMargins = 8, 8, 7, 7
|
|
FillColorHint = 246 246 246; Background color (very light grey)
|
|
|
|
|
|
[ExplorerBar.SpecialGroupCollapse]
|
|
BgType = ImageFile
|
|
SizingType = TrueSize
|
|
ImageLayout = Vertical
|
|
ImageFile = Metallic\SpecialGroupCollapse.bmp
|
|
ImageCount = 3
|
|
Transparent = true
|
|
OffsetType = TopRight
|
|
Offset = -3, 1
|
|
FillColorHint = 119 119 92; Average background color (dark grey)
|
|
BorderColorHint = 119 119 92; Edge color (dark grey)
|
|
|
|
|
|
[ExplorerBar.SpecialGroupExpand]
|
|
BgType = ImageFile
|
|
SizingType = TrueSize
|
|
ImageLayout = Vertical
|
|
ImageFile = Metallic\SpecialGroupExpand.bmp
|
|
ImageCount = 3
|
|
Transparent = true
|
|
OffsetType = TopRight
|
|
Offset = -3, 1
|
|
FillColorHint = 119 119 92; Average background color (dark grey)
|
|
BorderColorHint = 119 119 92; Edge color (dark grey)
|
|
|
|
|
|
|
|
[ExplorerBar.SpecialGroupHead]
|
|
BgType = ImageFile
|
|
SizingType = Stretch
|
|
ImageFile = Metallic\SpecialGroupHead.bmp
|
|
SizingMargins = 3, 106, 3, 1
|
|
Transparent = true
|
|
Font= ##Tahoma8Bold
|
|
TextColor = 255 255 255
|
|
FillColor = 119 119 146
|
|
ContentMargins = 8, 8, 7, 7
|
|
|
|
|
|
[ExplorerBar::Rebar]; Not used in IE 6
|
|
bgtype = imagefile
|
|
sizingtype = stretch
|
|
ImageFile = Metallic\ExplorerBarToolbarBackground.bmp
|
|
sizingmargins = 0, 0, 0, 4
|
|
Font= ##Tahoma8
|
|
TextColor = 127 124 115
|
|
FillColorHint = 246 246 246; (very light grey)
|
|
|
|
|
|
[ExplorerBar::Rebar.Band]; Not used in IE 6
|
|
bgtype = none
|
|
ContentMargins = 2, 0, 0, 0
|
|
|
|
[ExplorerBar::Rebar.Gripper]; Not used in IE 6
|
|
bgtype = imagefile
|
|
SizingMargins = 0, 0, 6, 4
|
|
ContentMargins = 3, 0, 0, 0
|
|
ImageFile = Metallic\Gripper.bmp
|
|
sizingType = Tile
|
|
Transparent = true
|
|
TransparentColor= 255 0 0
|
|
FillColorHint = 119 119 92; Gripper dot color (dark grey)
|
|
|
|
|
|
[ExplorerBar::Rebar.GripperVert]; Not used in IE 6
|
|
bgtype = imagefile
|
|
SizingMargins = 9, 8, 0, 0
|
|
ImageFile = Metallic\GripperVert.bmp
|
|
sizingType = Tile
|
|
Transparent = true
|
|
TransparentColor= 255 0 0
|
|
FillColorHint = 119 119 92; Gripper dot color (dark grey)
|
|
|
|
|
|
[ExplorerBar::Rebar.Chevron]; Not used in IE 6
|
|
SizingMargins = 4, 4, 4, 4
|
|
ContentMargins = 0, 0, 0, 0
|
|
ImageFile = Metallic\ExplorerBarToolbarButtons.bmp
|
|
bgtype = imagefile
|
|
imagelayout = vertical
|
|
imageCount = 6
|
|
sizingType = Stretch
|
|
Transparent = true
|
|
GlyphType = ImageGlyph
|
|
GlyphImageFile = Metallic\Chevron.bmp
|
|
GlyphTransparent= true
|
|
VAlign = Top
|
|
FillColorHint = 0 0 0; Glyph color (black)
|
|
|
|
|
|
[ExplorerBar::Rebar.ChevronVert]; Not used in IE 6
|
|
SizingMargins = 4, 4, 4, 4
|
|
ContentMargins = 0, 0, 0, 0
|
|
ImageFile = Metallic\ExplorerBarToolbarButtons.bmp
|
|
bgtype = imagefile
|
|
imagelayout = vertical
|
|
imageCount = 6
|
|
sizingType = Stretch
|
|
Transparent = true
|
|
GlyphType = ImageGlyph
|
|
GlyphImageFile = Metallic\Chevron.bmp
|
|
GlyphTransparent= true
|
|
VAlign = Top
|
|
FillColorHint = 0 0 0; Glyph color (black)
|
|
|
|
|
|
[ExplorerBar::Toolbar.Button]; Not used in IE 6
|
|
SizingMargins = 4, 4, 4, 4
|
|
ContentMargins = 0, 0, 0, 0
|
|
ImageFile = Metallic\ExplorerBarToolbarButtons.bmp
|
|
bgtype = imagefile
|
|
imagelayout = vertical
|
|
imageCount = 6
|
|
sizingType = Stretch
|
|
Transparent = true
|
|
TransparentColor= 255 0 255
|
|
FillColorHint = 240 241 245; Average fill color (light grey)
|
|
BorderColorHint = 177 183 187; Edge color (blue)
|
|
|
|
|
|
[ExplorerBar::Toolbar.DropdownButton]; Not used in IE 6
|
|
SizingMargins = 4, 4, 4, 4
|
|
ContentMargins = 0, 0, 0, 0
|
|
ImageFile = Metallic\ExplorerBarToolbarButtons.bmp
|
|
bgtype = imagefile
|
|
imagelayout = vertical
|
|
imageCount = 6
|
|
sizingType = Stretch
|
|
Transparent = true
|
|
TransparentColor= 255 0 255
|
|
FillColorHint = 238 243 248; Average fill color (light blue grey)
|
|
BorderColorHint = 177 183 187; Edge color (blue)
|
|
|
|
|
|
[ExplorerBar::Toolbar.SplitButton]; Not used in IE 6
|
|
SizingMargins = 4, 2, 4, 4
|
|
ImageFile = Metallic\ExplorerBarToolbarButtonsSplit.bmp
|
|
bgtype = imagefile
|
|
imagelayout = vertical
|
|
imageCount = 6
|
|
sizingType = Stretch
|
|
Transparent = true
|
|
TransparentColor= 255 0 255
|
|
FillColorHint = 240 241 245; Average fill color (light grey)
|
|
BorderColorHint = 177 183 187; Edge color (blue)
|
|
|
|
|
|
[ExplorerBar::Toolbar.SplitButtonDropdown]; Not used in IE 6
|
|
SizingMargins = 2, 4, 4, 4
|
|
ImageFile = Metallic\ExplorerBarToolbarButtonsSplitDropdown.bmp
|
|
bgtype = imagefile
|
|
imagelayout = vertical
|
|
imageCount = 6
|
|
sizingType = Stretch
|
|
Transparent = true
|
|
TransparentColor= 255 0 255
|
|
GlyphType = ImageGlyph
|
|
GlyphImageFile = Metallic\ToolbarButtonsSplitDropdownGlyph.bmp
|
|
GlyphTransparent= true
|
|
FillColorHint = 240 241 245; Average fill color (light grey)
|
|
BorderColorHint = 177 183 187; Edge color (grey)
|
|
|
|
|
|
[ExplorerBar::Toolbar.Separator]; Not used in IE 6
|
|
SizingMargins = 5, 2, 2, 1
|
|
ImageFile = Metallic\Separator.bmp
|
|
bgtype = imagefile
|
|
imageCount = 1
|
|
sizingType = tile
|
|
Transparent = true
|
|
TransparentColor= 255 0 0
|
|
FillColorHint = 119 119 92; Separator line color (dark grey)
|
|
|
|
|
|
[ExplorerBar::Toolbar.SeparatorVert]; Not used in IE 6
|
|
SizingMargins = 2, 1, 5, 1
|
|
ImageFile = Metallic\SeparatorVert.bmp
|
|
bgtype = imagefile
|
|
imageCount = 1
|
|
sizingType = tile
|
|
Transparent = true
|
|
TransparentColor= 255 0 0
|
|
FillColorHint = 119 119 92; Separator line color (dark grey)
|
|
|