#
# This is the GTK+ RC file for GNoise.
# GTK+ RC support was first added to GNoise v0.1.4.
#
# GNoise's GTK widgets that have been named can be refered to thusly:
#
# WaveDisplay		The widget class name
# WaveDisplayN		Channel N's widget name	(currently N={0,1})
# LevelMeterN		Channel N's level meter	(currently N={0,1})
# ClipMeterN		Channel N's clip meter	(currently N={0,1})
#
# Other widgets are standard GTK widgets and must be accessed by their class
# names. For information about how to write GTK+ RC files, see the official
# GTK+ tutorial (doubtlessly available from www.gtk.org). A synopsis is:
#
# style <name> [= <name>]
# {
#   <option>
# }
#
# widget <widget_set> style <style_name>
# widget_class <widget_class_set> style <style_name>


style "WaveDisplayDefault"
{
    bg[NORMAL]		= "#C5C2C5"	# unselected background color
    bg[SELECTED]	= "#044484"	# unselected wave data
    bg[ACTIVE]		= "#A4A1A4"	#   selected background color
    fg[INSENSITIVE]	= "#316FA5"	#   selected wave data
}

style "ClipMeter"
{
    bg[ACTIVE]		= "#E60000"	# when the clipmeter clips
}

# To have left and right channels draw differently for example:
style "WDLeft"
{
    bg[NORMAL]		= "#C5C2C5"	# unselected background color
    bg[SELECTED]	= "#0444A4"	# unselected wave data
    bg[ACTIVE]		= "#A4A1A4"	#   selected background color
    fg[INSENSITIVE]	= "#316FE5"	#   selected wave data
}
style "WDRight"
{
    bg[NORMAL]		= "#C5C2C5"	# unselected background color
    bg[SELECTED]	= "#04A484"	# unselected wave data
    bg[ACTIVE]		= "#A4A1A4"	#   selected background color
    fg[INSENSITIVE]	= "#31BFA5"	#   selected wave data
}



#widget_class "*" style "default"
#widget_class "*Menu*" style "menu"
#widget_class "*Button*" style "default"

#widget_class "*WaveDisplay*" style "WaveDisplayDefault"

# Uncomment for different Left and Right channel drawing
#widget "*WaveDisplay0" style "WDLeft"	# left channel
#widget "*WaveDisplay1" style "WDRight"	# right channel

# Make clip meters show red
widget "*ClipMeter0" style "ClipMeter"
widget "*ClipMeter1" style "ClipMeter"
