<?xml version="1.0"?>
<metacity_theme>
<info>
	<name>HighContrast</name>
	<author>Benjamin Berg &lt;benjamin@sipsolutions.net&gt;</author>
	<copyright>&#194; 2007 Benjamin Berg</copyright>
	<date>Nov, 2007</date>
	<description>A high contrast metacity theme.</description>
</info>

<!--
This is a simple high contrast theme. It should be easy to adjust for different line widths and other options.

Some random points:
  - The maximize/unmaximize icon is currently the same.
  - Change the icons to be more scalable? ie. not basing them on the LineWidth but use relative sizes.
  - Get the input from people that need HighContrast themes and/or from usability experts.
  - A lot of the buttons (eg. sticky) are not implemented and are just empty.
  - Fallback icon?
-->


<!-- Maybe add a fallback icon. Without it we may end up with an empty frame. (Which shouldn't be too bad.) -->
<!-- <fallback icon="" mini_icon=""/> -->

<!-- Settings -->
<constant name="LineWidth" value="3"/>
<constant name="TwoLinesWidth" value="6"/> <!-- Just 2*LineWidth -->

<constant name="BtnDisplacement" value="0"/> <!-- Displace the icon by this value to the bottom right when pressed. -->
<constant name="BtnBorder" value="3"/> <!-- Will usually be the same as LineWidth, however it can be changed to add space for eg. the displacement-->

<!-- Color mapping gtk <-> metacity -->
<constant name="FGNormal" value="gtk:fg[NORMAL]"/>
<constant name="BGNormal" value="gtk:bg[NORMAL]"/>

<constant name="FGPressed" value="gtk:fg[ACTIVE]"/>
<constant name="BGPressed" value="gtk:bg[ACTIVE]"/>

<constant name="FGPrelight" value="gtk:fg[PRELIGHT]"/>
<constant name="BGPrelight" value="gtk:bg[ACTIVE]"/>

<constant name="FGSelected" value="gtk:fg[SELECTED]"/>
<constant name="BGSelected" value="gtk:bg[SELECTED]"/>


<!-- Idea is to give modal windows eg. a red border. -->
<constant name="FGmodal" value="#ff0000"/>
<constant name="BGmodal" value="gtk:bg[NORMAL]"/>



<!-- Drawing Operations -->

<!-- Icons -->
<draw_ops name="close_normal">
	<clip x="0" y="0" width="width" height="height" />
	<line color="FGNormal" x1="0" y1="0" x2="width" y2="height" width="LineWidth" />
	<!-- I have no idea why the -1 works (maybe X line API?). The 0 is there because of http://bugzilla.gnome.org/show_bug.cgi?id=499569 -->
	<line color="FGNormal" x1="0-1" y2="0-1" x2="width" y1="height" width="LineWidth" />
</draw_ops>
<draw_ops name="close_selected">
	<clip x="0" y="0" width="width" height="height" />
	<line color="FGSelected" x1="0" y1="0" x2="width" y2="height" width="LineWidth" />
	<line color="FGSelected" x1="0-1" y2="0-1" x2="width" y1="height" width="LineWidth" />
</draw_ops>
<draw_ops name="close_pressed">
	<clip x="0" y="0" width="width" height="height" />
	<line color="FGPressed" x1="0" y1="0" x2="width" y2="height" width="LineWidth" />
	<line color="FGPressed" x1="0-1" y2="0-1" x2="width" y1="height" width="LineWidth" />
</draw_ops>
<draw_ops name="close_prelight">
	<clip x="0" y="0" width="width" height="height" />
	<line color="FGPrelight" x1="0" y1="0" x2="width" y2="height" width="LineWidth" />
	<line color="FGPrelight" x1="0-1" y2="0-1" x2="width" y1="height" width="LineWidth" />
</draw_ops>



<draw_ops name="maximize_normal">
	<rectangle color="FGNormal" filled="true" x="0" y="0" width="width" height="TwoLinesWidth" />
	<rectangle color="FGNormal" filled="true" x="0" y="0" width="LineWidth" height="height" />
	<rectangle color="FGNormal" filled="true" x="width-LineWidth" y="0" width="LineWidth" height="height" />
	<rectangle color="FGNormal" filled="true" x="0" y="height-LineWidth" width="width" height="LineWidth" />
</draw_ops>
<draw_ops name="maximize_selected">
	<rectangle color="FGSelected" filled="true" x="0" y="0" width="width" height="TwoLinesWidth" />
	<rectangle color="FGSelected" filled="true" x="0" y="0" width="LineWidth" height="height" />
	<rectangle color="FGSelected" filled="true" x="width-LineWidth" y="0" width="LineWidth" height="height" />
	<rectangle color="FGSelected" filled="true" x="0" y="height-LineWidth" width="width" height="LineWidth" />
</draw_ops>
<draw_ops name="maximize_pressed">
	<rectangle color="FGPressed" filled="true" x="0" y="0" width="width" height="TwoLinesWidth" />
	<rectangle color="FGPressed" filled="true" x="0" y="0" width="LineWidth" height="height" />
	<rectangle color="FGPressed" filled="true" x="width-LineWidth" y="0" width="LineWidth" height="height" />
	<rectangle color="FGPressed" filled="true" x="0" y="height-LineWidth" width="width" height="LineWidth" />
</draw_ops>
<draw_ops name="maximize_prelight">
	<rectangle color="FGPrelight" filled="true" x="0" y="0" width="width" height="TwoLinesWidth" />
	<rectangle color="FGPrelight" filled="true" x="0" y="0" width="LineWidth" height="height" />
	<rectangle color="FGPrelight" filled="true" x="width-LineWidth" y="0" width="LineWidth" height="height" />
	<rectangle color="FGPrelight" filled="true" x="0" y="height-LineWidth" width="width" height="LineWidth" />
</draw_ops>



<draw_ops name="minimize_normal">
	<rectangle color="FGNormal" filled="true" x="0" y="height-TwoLinesWidth" width="width" height="TwoLinesWidth" />
</draw_ops>
<draw_ops name="minimize_selected">
	<rectangle color="FGSelected" filled="true" x="0" y="height-TwoLinesWidth" width="width" height="TwoLinesWidth" />
</draw_ops>
<draw_ops name="minimize_pressed">
	<rectangle color="FGPressed" filled="true" x="0" y="height-TwoLinesWidth" width="width" height="TwoLinesWidth" />
</draw_ops>
<draw_ops name="minimize_prelight">
	<rectangle color="FGPrelight" filled="true" x="0" y="height-TwoLinesWidth" width="width" height="TwoLinesWidth" />
</draw_ops>


<draw_ops name="shade_normal">
	<rectangle color="FGNormal" filled="true" x="0" y="0" width="width" height="TwoLinesWidth" />
</draw_ops>
<draw_ops name="shade_selected">
	<rectangle color="FGSelected" filled="true" x="0" y="0" width="width" height="TwoLinesWidth" />
</draw_ops>
<draw_ops name="shade_pressed">
	<rectangle color="FGPressed" filled="true" x="0" y="0" width="width" height="TwoLinesWidth" />
</draw_ops>
<draw_ops name="shade_prelight">
	<rectangle color="FGPrelight" filled="true" x="0" y="0" width="width" height="TwoLinesWidth" />
</draw_ops>



<draw_ops name="icon_normal">
	<icon x="0" y="0" width="width" height="height" />
</draw_ops>
<draw_ops name="icon_selected">
	<icon x="0" y="0" width="width" height="height" />
</draw_ops>
<draw_ops name="icon_pressed">
	<icon x="0" y="0" width="width" height="height" />
</draw_ops>
<draw_ops name="icon_prelight">
	<icon x="0" y="0" width="width" height="height" />
</draw_ops>


<!-- And the wrapped version for buttons -->
<draw_ops name="button_close_normal">
	<include name="close_normal" x="LineWidth+BtnBorder" y="LineWidth+BtnBorder" width="width-(LineWidth+BtnBorder)*2" height="height-(LineWidth+BtnBorder)*2"/>
</draw_ops>
<draw_ops name="button_close_selected">
	<include name="close_selected" x="LineWidth+BtnBorder" y="LineWidth+BtnBorder" width="width-(LineWidth+BtnBorder)*2" height="height-(LineWidth+BtnBorder)*2"/>
</draw_ops>
<draw_ops name="button_close_prelight">
	<include name="close_prelight" x="LineWidth+BtnBorder" y="LineWidth+BtnBorder" width="width-(LineWidth+BtnBorder)*2" height="height-(LineWidth+BtnBorder)*2"/>
</draw_ops>
<draw_ops name="button_close_pressed">
	<include name="close_pressed" x="LineWidth+BtnBorder+BtnDisplacement" y="LineWidth+BtnBorder+BtnDisplacement" width="width-(LineWidth+BtnBorder)*2" height="height-(LineWidth+BtnBorder)*2"/>
</draw_ops>

<draw_ops name="button_maximize_normal">
	<include name="maximize_normal" x="LineWidth+BtnBorder" y="LineWidth+BtnBorder" width="width-(LineWidth+BtnBorder)*2" height="height-(LineWidth+BtnBorder)*2"/>
</draw_ops>
<draw_ops name="button_maximize_selected">
	<include name="maximize_selected" x="LineWidth+BtnBorder" y="LineWidth+BtnBorder" width="width-(LineWidth+BtnBorder)*2" height="height-(LineWidth+BtnBorder)*2"/>
</draw_ops>
<draw_ops name="button_maximize_prelight">
	<include name="maximize_prelight" x="LineWidth+BtnBorder" y="LineWidth+BtnBorder" width="width-(LineWidth+BtnBorder)*2" height="height-(LineWidth+BtnBorder)*2"/>
</draw_ops>
<draw_ops name="button_maximize_pressed">
	<include name="maximize_pressed" x="LineWidth+BtnBorder+BtnDisplacement" y="LineWidth+BtnBorder+BtnDisplacement" width="width-(LineWidth+BtnBorder)*2" height="height-(LineWidth+BtnBorder)*2"/>
</draw_ops>


<draw_ops name="button_minimize_normal">
	<include name="minimize_normal" x="LineWidth+BtnBorder" y="LineWidth+BtnBorder" width="width-(LineWidth+BtnBorder)*2" height="height-(LineWidth+BtnBorder)*2"/>
</draw_ops>
<draw_ops name="button_minimize_selected">
	<include name="minimize_selected" x="LineWidth+BtnBorder" y="LineWidth+BtnBorder" width="width-(LineWidth+BtnBorder)*2" height="height-(LineWidth+BtnBorder)*2"/>
</draw_ops>
<draw_ops name="button_minimize_prelight">
	<include name="minimize_prelight" x="LineWidth+BtnBorder" y="LineWidth+BtnBorder" width="width-(LineWidth+BtnBorder)*2" height="height-(LineWidth+BtnBorder)*2"/>
</draw_ops>
<draw_ops name="button_minimize_pressed">
	<include name="minimize_pressed" x="LineWidth+BtnBorder+BtnDisplacement" y="LineWidth+BtnBorder+BtnDisplacement" width="width-(LineWidth+BtnBorder)*2" height="height-(LineWidth+BtnBorder)*2"/>
</draw_ops>


<draw_ops name="button_shade_normal">
	<include name="shade_normal" x="LineWidth+BtnBorder" y="LineWidth+BtnBorder" width="width-(LineWidth+BtnBorder)*2" height="height-(LineWidth+BtnBorder)*2"/>
</draw_ops>
<draw_ops name="button_shade_selected">
	<include name="shade_selected" x="LineWidth+BtnBorder" y="LineWidth+BtnBorder" width="width-(LineWidth+BtnBorder)*2" height="height-(LineWidth+BtnBorder)*2"/>
</draw_ops>
<draw_ops name="button_shade_prelight">
	<include name="shade_prelight" x="LineWidth+BtnBorder" y="LineWidth+BtnBorder" width="width-(LineWidth+BtnBorder)*2" height="height-(LineWidth+BtnBorder)*2"/>
</draw_ops>
<draw_ops name="button_shade_pressed">
	<include name="shade_pressed" x="LineWidth+BtnBorder+BtnDisplacement" y="LineWidth+BtnBorder+BtnDisplacement" width="width-(LineWidth+BtnBorder)*2" height="height-(LineWidth+BtnBorder)*2"/>
</draw_ops>


<draw_ops name="button_icon_normal">
	<include name="icon_normal" x="LineWidth+BtnBorder" y="LineWidth+BtnBorder" width="width-(LineWidth+BtnBorder)*2" height="height-(LineWidth+BtnBorder)*2"/>
</draw_ops>
<draw_ops name="button_icon_selected">
	<include name="icon_selected" x="LineWidth+BtnBorder" y="LineWidth+BtnBorder" width="width-(LineWidth+BtnBorder)*2" height="height-(LineWidth+BtnBorder)*2"/>
</draw_ops>
<draw_ops name="button_icon_prelight">
	<include name="icon_prelight" x="LineWidth+BtnBorder" y="LineWidth+BtnBorder" width="width-(LineWidth+BtnBorder)*2" height="height-(LineWidth+BtnBorder)*2"/>
</draw_ops>
<draw_ops name="button_icon_pressed">
	<include name="icon_pressed" x="LineWidth+BtnBorder+BtnDisplacement" y="LineWidth+BtnBorder+BtnDisplacement" width="width-(LineWidth+BtnBorder)*2" height="height-(LineWidth+BtnBorder)*2"/>
</draw_ops>


<!-- Borders, etc. -->
<draw_ops name="center_title_normal">
	<title x="0 `max` ((width - title_width)/2)" y="0 `max` ((height - title_height)/2)" color="FGNormal"/>
</draw_ops>
<draw_ops name="center_title_selected">
	<title x="0 `max` ((width - title_width)/2)" y="0 `max` ((height - title_height)/2)" color="FGSelected"/>
</draw_ops>



<!-- Stuff -->
<draw_ops name="border_normal">
	<rectangle color="FGNormal" filled="true" x="0" y="0" width="width" height="LineWidth" />
	<rectangle color="FGNormal" filled="true" x="0" y="height-LineWidth" width="width" height="LineWidth" />
	<rectangle color="FGNormal" filled="true" x="0" y="0" width="LineWidth" height="height" />
	<rectangle color="FGNormal" filled="true" x="width-LineWidth" y="0" width="LineWidth" height="height" />
</draw_ops>
<draw_ops name="border_pressed">
	<rectangle color="FGPressed" filled="true" x="0" y="0" width="width" height="LineWidth" />
	<rectangle color="FGPressed" filled="true" x="0" y="height-LineWidth" width="width" height="LineWidth" />
	<rectangle color="FGPressed" filled="true" x="0" y="0" width="LineWidth" height="height" />
	<rectangle color="FGPressed" filled="true" x="width-LineWidth" y="0" width="LineWidth" height="height" />
</draw_ops>
<draw_ops name="border_prelight">
	<rectangle color="FGPrelight" filled="true" x="0" y="0" width="width" height="LineWidth" />
	<rectangle color="FGPrelight" filled="true" x="0" y="height-LineWidth" width="width" height="LineWidth" />
	<rectangle color="FGPrelight" filled="true" x="0" y="0" width="LineWidth" height="height" />
	<rectangle color="FGPrelight" filled="true" x="width-LineWidth" y="0" width="LineWidth" height="height" />
</draw_ops>
<draw_ops name="border_selected">
	<rectangle color="FGSelected" filled="true" x="0" y="0" width="width" height="LineWidth" />
	<rectangle color="FGSelected" filled="true" x="0" y="height-LineWidth" width="width" height="LineWidth" />
	<rectangle color="FGSelected" filled="true" x="0" y="0" width="LineWidth" height="height" />
	<rectangle color="FGSelected" filled="true" x="width-LineWidth" y="0" width="LineWidth" height="height" />
</draw_ops>
<draw_ops name="border_modal">
	<rectangle color="FGmodal" filled="true" x="0" y="0" width="width" height="LineWidth" />
	<rectangle color="FGmodal" filled="true" x="0" y="height-LineWidth" width="width" height="LineWidth" />
	<rectangle color="FGmodal" filled="true" x="0" y="0" width="LineWidth" height="height" />
	<rectangle color="FGmodal" filled="true" x="width-LineWidth" y="0" width="LineWidth" height="height" />
</draw_ops>

<draw_ops name="rectangle_normal">
	<include name="border_normal"/>
	<rectangle color="BGNormal" x="LineWidth" y="LineWidth" width="width-LineWidth*2" height="height-LineWidth*2" filled="true"/>
</draw_ops>
<draw_ops name="rectangle_pressed">
	<include name="border_pressed"/>
	<rectangle color="BGPressed" x="LineWidth" y="LineWidth" width="width-LineWidth*2" height="height-LineWidth*2" filled="true"/>
</draw_ops>
<draw_ops name="rectangle_prelight">
	<include name="border_prelight"/>
	<rectangle color="BGPrelight" x="LineWidth" y="LineWidth" width="width-LineWidth*2" height="height-LineWidth*2" filled="true"/>
</draw_ops>
<draw_ops name="rectangle_selected">
	<include name="border_selected"/>
	<rectangle color="BGSelected" x="LineWidth" y="LineWidth" width="width-LineWidth*2" height="height-LineWidth*2" filled="true"/>
</draw_ops>
<draw_ops name="rectangle_modal">
	<include name="border_modal"/>
	<rectangle color="BGmodal" x="LineWidth" y="LineWidth" width="width-LineWidth*2" height="height-LineWidth*2" filled="true"/>
</draw_ops>


<draw_ops name="frame_selected">
	<!-- Force a NORMAL border, as everything else does not make any sense. -->
	<include name="border_normal"/>
	<rectangle color="BGSelected" x="LineWidth" y="LineWidth" width="width-LineWidth*2" height="height-LineWidth*2" filled="true"/>
</draw_ops>

<draw_ops name="modal_frame_selected">
	<!-- Force a NORMAL border, as everything else does not make any sense. -->
	<include name="border_modal"/>
	<rectangle color="BGSelected" x="LineWidth" y="LineWidth" width="width-LineWidth*2" height="height-LineWidth*2" filled="true"/>
</draw_ops>


<!--*******************************************-->
<draw_ops name="empty_draw_ops">
</draw_ops>


<!-- Frame Geometries -->
<frame_geometry name="normal_geometry">
	<distance name="left_width" value="TwoLinesWidth"/>
	<distance name="right_width" value="TwoLinesWidth"/>
	<distance name="bottom_height" value="TwoLinesWidth"/>
	
	<distance name="left_titlebar_edge" value="TwoLinesWidth"/>
	<distance name="right_titlebar_edge" value="TwoLinesWidth"/>

	<distance name="title_vertical_pad" value="TwoLinesWidth"/>	

	<border name="title_border" left="TwoLinesWidth" right="TwoLinesWidth" top="TwoLinesWidth" bottom="TwoLinesWidth"/>
	<border name="button_border" left="LineWidth" right="LineWidth" top="TwoLinesWidth" bottom="TwoLinesWidth"/>
	<aspect_ratio name="button" value="1.0"/>
</frame_geometry> 
<frame_geometry name="border_only_geometry" has_title="false">
	<distance name="left_width" value="TwoLinesWidth"/>
	<distance name="right_width" value="TwoLinesWidth"/>
	<distance name="bottom_height" value="TwoLinesWidth"/>
	
	<distance name="left_titlebar_edge" value="TwoLinesWidth"/>
	<distance name="right_titlebar_edge" value="TwoLinesWidth"/>

	<distance name="title_vertical_pad" value="TwoLinesWidth"/>	

	<border name="title_border" left="0" right="0" top="0" bottom="0"/>
	<border name="button_border" left="0" right="0" top="0" bottom="0"/>
	<aspect_ratio name="button" value="1.0"/>
</frame_geometry> 



<frame_style name="base_normal" geometry="normal_geometry">
	<button function="close" state="normal" draw_ops="button_close_normal"/>
	<button function="close" state="pressed" draw_ops="button_close_pressed"/>
	<button function="close" state="prelight" draw_ops="button_close_prelight"/>

	<button function="menu" state="normal" draw_ops="button_icon_normal"/>
	<button function="menu" state="pressed" draw_ops="button_icon_pressed"/>
	<button function="menu" state="prelight" draw_ops="button_icon_prelight"/>

	<button function="maximize" state="normal" draw_ops="button_maximize_normal"/>
	<button function="maximize" state="pressed" draw_ops="button_maximize_pressed"/>
	<button function="maximize" state="prelight" draw_ops="button_maximize_prelight"/>

	<button function="minimize" state="normal" draw_ops="button_minimize_normal"/>
	<button function="minimize" state="pressed" draw_ops="button_minimize_pressed"/>
	<button function="minimize" state="prelight" draw_ops="button_minimize_prelight"/>

	<button function="shade" state="normal" draw_ops="button_shade_normal"/>
	<button function="shade" state="pressed" draw_ops="button_shade_pressed"/>
	<button function="shade" state="prelight" draw_ops="button_shade_prelight"/>

	<!-- Eat this theme metacity! Anyone has an idea how these buttons can be drawn? -->
	<button function="above" state="normal" draw_ops="empty_draw_ops"/>
	<button function="above" state="pressed" draw_ops="empty_draw_ops"/>
	<button function="stick" state="normal" draw_ops="empty_draw_ops"/>
	<button function="stick" state="pressed" draw_ops="empty_draw_ops"/>
	<button function="unshade" state="normal" draw_ops="empty_draw_ops"/>
	<button function="unshade" state="pressed" draw_ops="empty_draw_ops"/>
	<button function="unabove" state="normal" draw_ops="empty_draw_ops"/>
	<button function="unabove" state="pressed" draw_ops="empty_draw_ops"/>
	<button function="unstick" state="normal" draw_ops="empty_draw_ops"/>
	<button function="unstick" state="pressed" draw_ops="empty_draw_ops"/>
	
	<button function="left_middle_background" state="normal" draw_ops="rectangle_normal"/>
	<button function="left_middle_background" state="pressed" draw_ops="rectangle_pressed"/>
	<button function="left_middle_background" state="prelight" draw_ops="rectangle_prelight"/>

	<button function="right_middle_background" state="normal" draw_ops="rectangle_normal"/>
	<button function="right_middle_background" state="pressed" draw_ops="rectangle_pressed"/>
	<button function="right_middle_background" state="prelight" draw_ops="rectangle_prelight"/>

	<!-- This is because of http://bugzilla.gnome.org/show_bug.cgi?id=419043 (the middle fallback does not work for prelight) -->
	<!-- Should not be needed anymore.
	<button function="left_left_background" state="prelight" draw_ops="rectangle_prelight"/>
	<button function="left_right_background" state="prelight" draw_ops="rectangle_prelight"/>
	<button function="right_left_background" state="prelight" draw_ops="rectangle_prelight"/>
	<button function="right_right_background" state="prelight" draw_ops="rectangle_prelight"/>-->
</frame_style>

<frame_style name="normal_normal" parent="base_normal">
	<piece position="title" draw_ops="center_title_normal" />
	<piece position="entire_background" draw_ops="rectangle_normal" />
</frame_style>

<frame_style name="normal_focused" parent="normal_normal">
	<button function="close" state="normal" draw_ops="button_close_selected"/>
	<button function="menu" state="normal" draw_ops="button_icon_selected"/>
	<button function="maximize" state="normal" draw_ops="button_maximize_selected"/>
	<button function="minimize" state="normal" draw_ops="button_minimize_selected"/>
	<button function="shade" state="normal" draw_ops="button_shade_selected"/>

	<button function="left_middle_background" state="normal" draw_ops="rectangle_selected"/>
	<button function="right_middle_background" state="normal" draw_ops="rectangle_selected"/>

	<piece position="title" draw_ops="center_title_selected" />
	<piece position="entire_background" draw_ops="frame_selected" />
</frame_style>

<frame_style name="modal_focused" parent="normal_focused">
	<piece position="entire_background" draw_ops="modal_frame_selected" />
</frame_style>

<frame_style name="border_only_normal" parent="base_normal" geometry="border_only_geometry">
	<piece position="entire_background" draw_ops="rectangle_normal" />
</frame_style>
<frame_style name="border_only_focused" parent="border_only_normal">
</frame_style>




<frame_style_set name="normal_style_set">
	<frame focus="yes" state="normal" resize="both" style="normal_focused"/>
	<frame focus="no" state="normal" resize="both" style="normal_normal"/>

	<frame focus="yes" state="shaded" style="normal_focused"/>
	<frame focus="no" state="shaded" style="normal_normal"/>

	<frame focus="yes" state="maximized" style="normal_focused"/>
	<frame focus="no" state="maximized" style="normal_normal"/>

	<frame focus="yes" state="maximized_and_shaded" style="normal_focused"/>
	<frame focus="no" state="maximized_and_shaded" style="normal_normal"/>
</frame_style_set>

<frame_style_set name="modal_style_set" parent="normal_style_set">
	<frame focus="yes" state="normal" resize="none" style="modal_focused"/>
	<frame focus="yes" state="normal" resize="both" style="modal_focused"/>
	<frame focus="yes" state="normal" resize="horizontal" style="modal_focused"/>
	<frame focus="yes" state="normal" resize="vertical" style="modal_focused"/>

	<frame focus="yes" state="shaded" resize="none" style="modal_focused"/>
	<frame focus="yes" state="shaded" resize="both" style="modal_focused"/>
	<frame focus="yes" state="shaded" resize="horizontal" style="modal_focused"/>
	<frame focus="yes" state="shaded" resize="vertical" style="modal_focused"/>

	<frame focus="yes" state="maximized" style="modal_focused"/>
	<frame focus="yes" state="maximized_and_shaded" style="modal_focused"/>
</frame_style_set>

<frame_style_set name="border_only_style_set">
	<frame focus="yes" state="normal" resize="both" style="border_only_focused"/>
	<frame focus="no" state="normal" resize="both" style="border_only_normal"/>

	<frame focus="yes" state="shaded" style="border_only_focused"/>
	<frame focus="no" state="shaded" style="border_only_normal"/>

	<frame focus="yes" state="maximized" style="border_only_focused"/>
	<frame focus="no" state="maximized" style="border_only_normal"/>

	<frame focus="yes" state="maximized_and_shaded" style="border_only_focused"/>
	<frame focus="no" state="maximized_and_shaded" style="border_only_normal"/>
</frame_style_set>


<window type="normal" style_set="normal_style_set"/>
<window type="dialog" style_set="normal_style_set"/>
<window type="modal_dialog" style_set="modal_style_set"/>
<window type="menu" style_set="normal_style_set"/>
<window type="utility" style_set="normal_style_set"/>
<window type="border" style_set="border_only_style_set"/>

</metacity_theme>
