# style <name> [= <name>]
# {
#   <option>
# }
#
# widget <widget_set> style <style_name>
# widget_class <widget_class_set> style <style_name>

style "default"
{
  font = "-adobe-helvetica-medium-r-normal-*-*-120-*-*-p-*-iso8859-1"

#bg_pixmap[NORMAL] = "bg.xpm"

# base, text, bg, fg are possible
bg[NORMAL] = { 0.73, 0.73, 0.73 }
bg[SELECTED] = { 0.63, 0.63, 0.63 }
bg[INSENSITIVE] = { 0.73, 0.73, 0.73 }
bg[ACTIVE] = { 0.63, 0.63, 0.63 }
bg[PRELIGHT] = { 0.73, 0.73, 0.73 }

fg[NORMAL] = { 0.0, 0.0, 0.0 }
fg[SELECTED] = { 1.0, 1.0, 1.0 }
fg[ACTIVE] = { 0.0, 0.0, 0.0 }
fg[PRELIGHT] = { 0.0, 0.0, 0.0 }

text[INSENSITIVE] = { 0.60, 0.60, 0.60 }

}
widget_class "*" style "default"





style "button"
{
  engine "pixmap" 
    {
    image 
      {
        function        = BOX
	recolorable     = TRUE
	state           = NORMAL
        detail		= "buttondefault"
	shadow          = IN
	file            = "in.png"
	border          = { 3,3,3,3 }
	stretch         = TRUE
      }
    image 
      {
        function        = BOX
	recolorable     = TRUE
	state           = NORMAL
	shadow          = OUT
	file            = "clear.png"
	border          = { 7,7,7,7 }
	stretch         = TRUE
      }
    image 
      {
        function        = BOX
	recolorable     = TRUE
	state           = PRELIGHT
	shadow          = IN
	file            = "green.png"
	border          = { 7,7,7,7 }
	stretch         = TRUE
      }
    image 
      {
        function        = BOX
	recolorable     = TRUE
	state           = PRELIGHT
	shadow          = OUT
	file            = "yellow.png"
	border          = { 7,7,7,7 }
	stretch         = TRUE
      }
    image 
      {
        function        = BOX
	recolorable     = TRUE
	state           = NORMAL
	shadow          = IN
	file            = "green.png"
	border          = { 7,7,7,7 }
	stretch         = TRUE
      }
    image 
      {
        function        = BOX
	recolorable     = TRUE
	state           = INSENSITIVE
	shadow          = IN
	file            = "red.png"
	border          = { 7,7,7,7 }
	stretch         = TRUE
      }
    image 
      {
        function        = BOX
	recolorable     = TRUE
	state           = INSENSITIVE
	shadow          = OUT
	file            = "red.png"
	border          = { 7,7,7,7 }
	stretch         = TRUE
      }
    image 
      {
        function        = BOX
	recolorable     = TRUE
	state           = SELECTED
	shadow          = IN
	file            = "green.png"
	border          = { 7,7,7,7 }
	stretch         = TRUE
      }
    image 
      {
        function        = BOX
	recolorable     = TRUE
	state           = ACTIVE
	shadow          = IN
	file            = "green.png"
	border          = { 7,7,7,7 }
	stretch         = TRUE
      }
    image
      {
   	function	= TAB
	recolorable	= TRUE
	overlay_file	= "option_menu.png"
	overlay_stretch = FALSE
      }
   }
}

class "GtkButton" style "button"
class "GtkOptionMenu" style "button"





style "menuitem"
{
  engine "pixmap" {
    image
      {
	function        = ARROW
	recolorable 	= TRUE
	state		= NORMAL
	file		= "arrow_left.png"
	stretch         = FALSE
	arrow_direction	= LEFT
      }
    image
      {
	function        = ARROW
	recolorable 	= TRUE
	state		= PRELIGHT
	file		= "arrow_left.png"
	stretch         = FALSE
	arrow_direction	= LEFT
      }
    image
      {
	function        = ARROW
	recolorable 	= TRUE
	state		= NORMAL
	file		= "arrow_sub.png"
	stretch         = FALSE
	arrow_direction	= RIGHT
      }
    image
      {
	function        = ARROW
	recolorable 	= TRUE
	state		= PRELIGHT
	file		= "arrow_sub.png"
	stretch         = FALSE
	arrow_direction	= RIGHT
      }
    image
      {
	function        = ARROW
	recolorable 	= TRUE
	shadow		= IN
	file		= "arrow_sub.png"
	stretch         = FALSE
	arrow_direction	= RIGHT
      }
    image
      {
	function	= BOX
	recolorable	= TRUE
	state		= PRELIGHT
	file		= "yellow.png"
	border		= { 7, 7, 7, 7 }
	stretch		= TRUE
      }
    image
      {
	function	= BOX
	recolorable	= TRUE
	state		= INSENSITIVE
	file		= "red.png"
	border		= { 7, 7, 7, 7 }
	stretch		= TRUE
      }
    image 
      {
        function        = HLINE
	recolorable     = TRUE
	file            = "hline.png"
	border          = { 0, 0, 1, 1 }
	stretch         = TRUE
      }
  }
}
class "GtkMenuItem" style "menuitem"





style "checkradiobutton"
{
  engine "pixmap" {
# Check marks
    image
      {
	function        = CHECK
	recolorable     = TRUE
	shadow          = OUT
	overlay_file    = "check1.png"
	overlay_stretch = FALSE
      }
    image
      {
	function        = CHECK
	recolorable     = TRUE
	shadow          = IN
	overlay_file    = "check2.png"
	overlay_stretch = FALSE
      }
# Option marks
    image
      {
	function        = OPTION
	recolorable     = TRUE
	shadow          = OUT
	overlay_file    = "option1.png"
	overlay_border  = { 0, 0, 0, 0 }
	overlay_stretch = FALSE
      }
    image
      {
	function        = OPTION
	recolorable     = TRUE
	shadow          = IN
	overlay_file    = "option2.png"
	overlay_border  = { 0, 0, 0, 0 }
	overlay_stretch = FALSE
      }
    image
      {
	function	= FLAT_BOX
	recolorable	= TRUE
	file		= "blank.png"
	border		= {  2, 2, 2, 2 }
	stretch		= TRUE
      }
  }
}
class "GtkRadioButton" style "checkradiobutton"
class "GtkCheckButton" style "checkradiobutton"





style "progressbar"
{
  engine "pixmap" {
    image 
      {
        function        = BOX
	recolorable     = TRUE
	detail          = "bar"
	file            = "blue.png"
	border          = { 7,7,7,7 }
	stretch         = TRUE
      }
    image
      {
        function        = BOX
        recolorable     = TRUE
        detail          = "trough"
        file            = "htrough.png"
        border          = { 6,6,8,8 }
        stretch         = TRUE
        orientation     = HORIZONTAL
      }
  }
}
class "GtkProgressBar" style "progressbar"





style "slider"
{
  engine "pixmap" {
    image
      {
	function	= BOX
	recolorable	= FALSE
	detail		= "trough"
	file		= "htrough.png"
	border		= { 9, 9, 1, 1 }
	stretch		= TRUE
        orientation	= HORIZONTAL
      }
    image 
      {
	function	= BOX
	recolorable	= FALSE
	detail		= "trough"
	file		= "vtrough.png"
	border		= { 1, 1, 9, 9 }
	stretch		= TRUE
        orientation	= VERTICAL
      }
    image 
      {
	function	= SLIDER
	recolorable	= FALSE
	state		= NORMAL
	file		= "slider1.png"
	border		= { 7, 7, 7, 7 }
	stretch		= TRUE
        orientation	= HORIZONTAL
      }
    image 
      {
	function	= SLIDER
	recolorable	= FALSE
	state		= NORMAL
	file		= "slider1.png"
	border		= { 7, 7, 7, 7 }
	stretch		= TRUE
	orientation	= VERTICAL
      }
    image 
      {
	function	= BOX
	recolorable	= FALSE
	state		= NORMAL
	file		= "slider1.png"
	border		= { 7, 7, 7, 7 }
	stretch		= TRUE
	orientation	= HORIZONTAL
      }
    image 
      {
	function	= BOX
	recolorable	= FALSE
	state		= NORMAL
	file		= "slider1.png"
	border		= { 7, 7, 7, 7 }
	stretch		= TRUE
	orientation	= VERTICAL
      }
    image 
      {
	function	= SLIDER
	recolorable	= FALSE
	state		= PRELIGHT
	file		= "slider2.png"
	border		= { 7, 7, 7, 7 }
	stretch		= TRUE
	orientation	= HORIZONTAL
      }
    image 
      {
	function	= SLIDER
	recolorable	= FALSE
	state		= PRELIGHT
	file		= "slider2.png"
	border		= { 7, 7, 7, 7 }
	stretch		= TRUE
	orientation	= VERTICAL
      }
    image 
      {
	function	= BOX
	recolorable	= FALSE
	state		= PRELIGHT
	file		= "slider2.png"
	border		= { 7, 7, 7, 7 }
	stretch		= TRUE
	orientation	= HORIZONTAL
      }
    image 
      {
	function	= BOX
        recolorable	= FALSE
	state		= PRELIGHT
	file		= "slider2.png"
	border		= { 7, 7, 7, 7 }
	stretch		= TRUE
	orientation	= VERTICAL
      }
    image 
      {
	function	= ARROW
	recolorable	= TRUE
	state		= NORMAL
	file		= "abutton1.png"
	border		= { 7, 7, 7, 7 }
	stretch		= TRUE
	overlay_file	= "arrow_up.png"
	overlay_border	= { 0, 0, 0, 0 }
	overlay_stretch	= FALSE
	arrow_direction	= UP
      }
    image 
      {
	function	= ARROW
	recolorable	= TRUE
	state		= NORMAL
	file		= "abutton1.png"
	border		= { 7, 7, 7, 7 }
	stretch		= TRUE
	overlay_file	= "arrow_down.png"
	overlay_border	= { 0, 0, 0, 0 }
	overlay_stretch	= FALSE
	arrow_direction	= DOWN
      }
    image 
      {
	function	= ARROW
	recolorable	= TRUE
	state		= NORMAL
	file		= "abutton1.png"
	border		= { 7, 7, 7, 7 }
	stretch		= TRUE
	overlay_file	= "arrow_left.png"
	overlay_border	= { 0, 0, 0, 0 }
	overlay_stretch	= FALSE
	arrow_direction	= LEFT
      }
    image 
      {
	function	= ARROW
	recolorable	= TRUE
	state		= NORMAL
	file		= "abutton1.png"
	border		= { 7, 7, 7, 7 }
	stretch		= TRUE
	overlay_file	= "arrow_right.png"
	overlay_border	= { 0, 0, 0, 0 }
	overlay_stretch	= FALSE
	arrow_direction	= RIGHT
      }
    image 
      {
	function	= ARROW
	recolorable	= TRUE
	state		= PRELIGHT
	file		= "abutton2.png"
	border		= { 7, 7, 7, 7 }
	stretch		= TRUE
	overlay_file	= "arrow_up.png"
	overlay_border	= { 0, 0, 0, 0 }
	overlay_stretch	= FALSE
	arrow_direction	= UP
      }
    image 
      {
	function	= ARROW
	recolorable	= TRUE
	state		= PRELIGHT
	file		= "abutton2.png"
	border		= { 7, 7, 7, 7 }
	stretch		= TRUE
	overlay_file	= "arrow_down.png"
	overlay_border	= { 0, 0, 0, 0 }
	overlay_stretch	= FALSE
	arrow_direction	= DOWN
      }
    image 
      {
	function	= ARROW
	recolorable	= TRUE
	state		= PRELIGHT
	file		= "abutton2.png"
	border		= { 7, 7, 7, 7 }
	stretch		= TRUE
	overlay_file	= "arrow_left.png"
	overlay_border	= { 0, 0, 0, 0 }
	overlay_stretch	= FALSE
	arrow_direction	= LEFT
      }
    image 
      {
	function	= ARROW
	recolorable	= TRUE
	state		= PRELIGHT
	file		= "abutton2.png"
	border		= { 7, 7, 7, 7 }
	stretch		= TRUE
	overlay_file	= "arrow_right.png"
	overlay_border	= { 0, 0, 0, 0 }
	overlay_stretch	= FALSE
	arrow_direction	= RIGHT
      }
    image 
      {
	function	= ARROW
	recolorable	= TRUE
	shadow		= IN
	file		= "abutton3.png"
	border		= { 7, 7, 7, 7 }
	stretch		= TRUE
	overlay_file	= "arrow_up.png"
	overlay_border	= { 0, 0, 0, 0 }
	overlay_stretch	= FALSE
	arrow_direction	= UP
      }
    image 
      {
	function	= ARROW
	recolorable	= TRUE
	shadow		= IN
	file		= "abutton3.png"
	border		= { 7, 7, 7, 7 }
	stretch		= TRUE
	overlay_file	= "arrow_down.png"
	overlay_border	= { 0, 0, 0, 0 }
	overlay_stretch	= FALSE
	arrow_direction	= DOWN
      }
    image 
      {
	function	= ARROW
	recolorable	= TRUE
	shadow		= IN
	file		= "abutton3.png"
	border		= { 7, 7, 7, 7 }
	stretch		= TRUE
	overlay_file	= "arrow_left.png"
	overlay_border	= { 0, 0, 0, 0 }
	overlay_stretch	= FALSE
	arrow_direction	= LEFT
      }
    image 
      {
	function	= ARROW
	recolorable	= TRUE
	shadow		= IN
	file		= "abutton3.png"
	border		= { 7, 7, 7, 7 }
	stretch		= TRUE
	overlay_file	= "arrow_right.png"
	overlay_border	= { 0, 0, 0, 0 }
	overlay_stretch	= FALSE
	arrow_direction	= RIGHT
      }
  }
}
class "*Scroll*" style "slider"
class "*Scale*" style "slider"




style "arrows"
{ 
 engine "pixmap" {
# Arrows
    image
      {
	function	= ARROW
	recolorable	= TRUE
	state		= NORMAL
	overlay_file	= "arrow_up.png"
	overlay_border	= { 0, 0, 0, 0 }
	overlay_stretch	= FALSE
	arrow_direction	= UP
      }
    image
      {
	function	= ARROW
	recolorable	= TRUE
	state		= NORMAL
	overlay_file	= "arrow_down.png"
	overlay_border	= { 0, 0, 0, 0 }
	overlay_stretch	= FALSE
	arrow_direction	= DOWN
      }
    image
      {
	function	= ARROW
	recolorable	= TRUE
	state		= NORMAL
	overlay_file	= "arrow_left.png"
	overlay_border	= { 0, 0, 0, 0 }
	overlay_stretch	= FALSE
	arrow_direction	= LEFT
      }
    image
      {
	function	= ARROW
	recolorable	= TRUE
	state		= NORMAL
	overlay_file	= "arrow_right.png"
	overlay_border	= { 0, 0, 0, 0 }
	overlay_stretch	= FALSE
	arrow_direction	= RIGHT
      }
    image
      {
	function	= ARROW
	recolorable	= TRUE
	state		= PRELIGHT
	overlay_file	= "arrow_up.png"
	overlay_border	= { 0, 0, 0, 0 }
	overlay_stretch	= FALSE
	arrow_direction	= UP
      }
    image
      {
	function	= ARROW
	recolorable	= TRUE
	state		= PRELIGHT
	overlay_file	= "arrow_down.png"
	overlay_border	= { 0, 0, 0, 0 }
	overlay_stretch	= FALSE
	arrow_direction	= DOWN
      }
    image
      {
	function	= ARROW
	recolorable	= TRUE
	state		= PRELIGHT
	overlay_file	= "arrow_left.png"
	overlay_border	= { 0, 0, 0, 0 }
	overlay_stretch	= FALSE
	arrow_direction	= LEFT
      }
    image
      {
	function	= ARROW
	recolorable	= TRUE
	state		= PRELIGHT
	overlay_file	= "arrow_right.png"
	overlay_border	= { 0, 0, 0, 0 }
	overlay_stretch	= FALSE
	arrow_direction	= RIGHT
      }
    image
      {
	function	= ARROW
	recolorable	= TRUE
	shadow		= IN
	overlay_file	= "arrow_up.png"
	overlay_border	= { 0, 0, 0, 0 }
	overlay_stretch	= FALSE
	arrow_direction	= UP
      }
    image
      {
	function	= ARROW
	recolorable	= TRUE
	shadow		= IN
	overlay_file	= "arrow_down.png"
	overlay_border	= { 0, 0, 0, 0 }
	overlay_stretch	= FALSE
	arrow_direction	= DOWN
      }
    image
      {
	function	= ARROW
	recolorable	= TRUE
	shadow		= IN
	overlay_file	= "arrow_left.png"
	overlay_border	= { 0, 0, 0, 0 }
	overlay_stretch	= FALSE
	arrow_direction	= LEFT
      }
    image
      {
	function	= ARROW
	recolorable	= TRUE
	shadow		= IN
	overlay_file	= "arrow_right.png"
	overlay_border	= { 0, 0, 0, 0 }
	overlay_stretch	= FALSE
	arrow_direction	= RIGHT
      }
  }
}
class "GtkArrow" style "arrows"





style "spin"
{ 
 engine "pixmap" {
     image
      {
     	function	= FLAT_BOX
	recolorable	= TRUE
	detail		= "entry_bg"
	file		= "entry1.png"
	border          = { 1,1,1,1 }
	stretch		= TRUE
      }
    image 
      {
        function        = SHADOW
	recolorable     = TRUE
	shadow          = IN
	file            = "in.png"
	border          = { 3,3,3,3 }
	stretch         = TRUE
      }
    image
      {
	function	= ARROW
	recolorable	= TRUE
	state		= NORMAL
	overlay_file	= "plus.png"
	overlay_border	= { 0, 0, 0, 0 }
	overlay_stretch	= FALSE
	arrow_direction	= UP
      }
    image
      {
	function	= ARROW
	recolorable	= TRUE
	state		= NORMAL
	overlay_file	= "minus.png"
	overlay_border	= { 0, 0, 0, 0 }
	overlay_stretch	= FALSE
	arrow_direction	= DOWN
      }
    image
      {
	function	= ARROW
	recolorable	= TRUE
	state		= PRELIGHT
	overlay_file	= "plus.png"
	overlay_border	= { 0, 0, 0, 0 }
	overlay_stretch	= FALSE
	arrow_direction	= UP
      }
    image
      {
	function	= ARROW
	recolorable	= TRUE
	state		= PRELIGHT
	overlay_file	= "minus.png"
	overlay_border	= { 0, 0, 0, 0 }
	overlay_stretch	= FALSE
	arrow_direction	= DOWN
      }
    image
      {
	function	= ARROW
	recolorable	= TRUE
	shadow		= IN
	overlay_file	= "plus.png"
	overlay_border	= { 0, 0, 0, 0 }
	overlay_stretch	= FALSE
	arrow_direction	= UP
      }
    image
      {
	function	= ARROW
	recolorable	= TRUE
	shadow		= IN
	overlay_file	= "minus.png"
	overlay_border	= { 0, 0, 0, 0 }
	overlay_stretch	= FALSE
	arrow_direction	= DOWN
      }
  }
}
class "GtkSpinButton" style "spin"

























