1<?xml version="1.0"?>
2<metacity_theme>
3	<info>
4		<name>@FlavourThemeName@</name>
5		<author>Martin Wimpress</author>
6		<copyright>Martin Wimpress, 2021</copyright>
7		<date>January 20, 2021</date>
8		<description>@FlavourThemeName@ Metacity (Marco) Theme</description>
9	</info>
10
11	<!-- CONSTANTS -->
12	<constant name="C_titlebar" value="@titlebar@" />
13	<constant name="C_titlebar_unfocused" value="@titlebar_unfocused@" />
14	<constant name="C_titlebar_border_focused" value="@titlebar_border_focused@" />
15	<constant name="C_titlebar_border_unfocused" value="@titlebar_border_unfocused@" />
16	<constant name="C_titlebar_highlight_focused" value="@titlebar_highlight_focused@" />
17	<constant name="C_titlebar_highlight_unfocused" value="@titlebar_highlight_unfocused@" />
18	<constant name="C_border_focused" value="@border_focused@" />
19	<constant name="C_border_unfocused" value="@border_unfocused@" />
20	<constant name="C_title_focused" value="@title_focused@" />
21	<constant name="C_title_unfocused" value="@title_unfocused@" />
22
23	<!-- GEOMETRY -->
24	<!-- focused window -->
25	<frame_geometry name="normal" title_scale="medium" rounded_top_left="true" rounded_top_right="true">
26		<distance name="left_width" value="1" />
27		<distance name="right_width" value="1" />
28		<distance name="bottom_height" value="1" />
29		<distance name="left_titlebar_edge" value="6" />
30		<distance name="right_titlebar_edge" value="6" />
31		<distance name="title_vertical_pad" value="1" />
32		<aspect_ratio name="button" value="1" />
33		<border name="title_border" left="0" right="0" top="8" bottom="8" />
34		<border name="button_border" left="11" right="0" top="3" bottom="3" />
35	</frame_geometry>
36	<frame_geometry name="normal_shaded" rounded_bottom_left="true" rounded_bottom_right="true" parent="normal" />
37
38	<!-- no buttons -->
39	<frame_geometry name="nobuttons" hide_buttons="true" parent="normal" />
40	<frame_geometry name="nobuttons_shaded" rounded_bottom_left="true" rounded_bottom_right="true" parent="nobuttons" />
41
42	<!-- maximized window -->
43	<frame_geometry name="max" title_scale="medium" rounded_top_left="false" rounded_top_right="false" parent="normal">
44		<distance name="left_width" value="0" />
45		<distance name="right_width" value="0" />
46		<distance name="bottom_height" value="0" />
47	</frame_geometry>
48
49	<!-- tiled -->
50	<frame_geometry name="tiled_left_active" parent="max" />
51
52	<frame_geometry name="tiled_left_inactive" parent="max" />
53
54	<!-- tiled_right have a left_width so a border is always rendered so when
55		 two windows are tiled next to each other a single pixel line
56		 can be draw to separate them
57	-->
58	<frame_geometry name="tiled_right_active" parent="max">
59		<distance name="left_width" value="1" />
60	</frame_geometry>
61
62	<frame_geometry name="tiled_right_inactive" parent="max">
63		<distance name="left_width" value="1" />
64	</frame_geometry>
65
66	<!-- border -->
67	<frame_geometry name="border" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal">
68		<distance name="left_width" value="0" />
69		<distance name="right_width" value="0" />
70		<distance name="bottom_height" value="0" />
71		<border name="title_border" left="0" right="0" top="0" bottom="0" />
72		<border name="button_border" left="0" right="0" top="0" bottom="0" />
73	</frame_geometry>
74
75	<!-- borderless -->
76	<frame_geometry name="borderless" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal">
77		<distance name="left_width" value="0" />
78		<distance name="right_width" value="0" />
79		<distance name="bottom_height" value="0" />
80		<border name="title_border" left="0" right="0" top="0" bottom="0" />
81		<border name="button_border" left="0" right="0" top="0" bottom="0" />
82	</frame_geometry>
83
84	<!-- title -->
85	<draw_ops name="title_focused">
86		<title x="(0 `max` ((frame_x_center - title_width / 2) `min` (width - title_width)))" y="(0 `max` ((height - title_height) / 2))" color="C_title_focused" />
87	</draw_ops>
88
89	<draw_ops name="title_unfocused">
90		<title x="(0 `max` ((frame_x_center - title_width / 2) `min` (width - title_width)))" y="(0 `max` ((height - title_height) / 2))" color="C_title_unfocused" />
91	</draw_ops>
92
93	<!-- WINDOW DECORATIONS -->
94	<draw_ops name="entire_background_focused">
95		<rectangle color="C_titlebar" x="0" y="0" width="width" height="height" filled="true" />
96	</draw_ops>
97
98	<draw_ops name="entire_background_unfocused">
99		<rectangle color="C_titlebar_unfocused" x="0" y="0" width="width" height="height" filled="true" />
100	</draw_ops>
101
102	<draw_ops name="titlebar_fill_focused">
103		<rectangle color="C_titlebar" x="0" y="0" width="width" height="height" filled="true" />
104	</draw_ops>
105
106	<draw_ops name="titlebar_fill_unfocused">
107		<rectangle color="C_titlebar_unfocused" x="0" y="0" width="width" height="height" filled="true" />
108	</draw_ops>
109
110	<draw_ops name="titlebar_tiled_focused">
111		<rectangle color="C_titlebar" x="0" y="0" width="width" height="height" filled="true" />
112	</draw_ops>
113
114	<draw_ops name="titlebar_tiled_unfocused">
115		<rectangle color="C_titlebar_unfocused" x="0" y="0" width="width" height="height" filled="true" />
116	</draw_ops>
117
118	<draw_ops name="border_focused">
119		<rectangle color="C_border_focused" x="0" y="0" width="width-1" height="height-1" filled="false" />
120	</draw_ops>
121
122	<draw_ops name="border_unfocused">
123		<rectangle color="C_border_unfocused" x="0" y="0" width="width-1" height="height-1" filled="false" />
124	</draw_ops>
125
126	<draw_ops name="rounded_border_focused">
127		<line color="C_titlebar_border_focused" x1="2" y1="0" x2="width-3" y2="0" />
128		<line color="C_titlebar_border_unfocused" x1="1" y1="top_height-1" x2="width-1" y2="top_height-1" />
129		<line color="C_border_focused" x1="0" y1="height-1" x2="width-1" y2="height-1" />
130		<line color="C_border_focused" x1="0" y1="2" x2="0" y2="height-2" />
131		<line color="C_border_focused" x1="width-1" y1="2" x2="width-1" y2="height-2" />
132
133		<!-- left arch -->
134		<line color="C_titlebar_border_focused" x1="0" x2="4" y1="1" y2="1" />
135		<line color="C_titlebar_border_focused" x1="0" x2="2" y1="2" y2="2" />
136		<line color="C_titlebar_border_focused" x1="0" x2="1" y1="3" y2="3" />
137		<line color="C_titlebar_border_focused" x1="0" x2="1" y1="4" y2="4" />
138		<!-- left title bar edge -->
139		<gradient type="vertical" x="0" y="2" width="1" height="height/3">
140			<color value="C_titlebar_border_focused" />
141			<color value="C_border_focused" />
142		</gradient>
143
144		<!-- right arch -->
145		<line color="C_titlebar_border_focused" x1="width-5" x2="width" y1="1" y2="1" />
146		<line color="C_titlebar_border_focused" x1="width-3" x2="width" y1="2" y2="2" />
147		<line color="C_titlebar_border_focused" x1="width-2" x2="width" y1="3" y2="3" />
148		<line color="C_titlebar_border_focused" x1="width-2" x2="width" y1="4" y2="4" />
149		<!-- right title bar edge -->
150		<gradient type="vertical" x="width-1" y="2" width="1" height="height/3">
151			<color value="C_titlebar_border_focused" />
152			<color value="C_border_focused" />
153		</gradient>
154
155		<!-- title bar top highlight -->
156		<line color="C_titlebar_highlight_focused" x1="5" y1="1" x2="width-6" y2="1" />
157		<line color="C_titlebar_highlight_focused" x1="3" x2="4" y1="2" y2="2" />
158		<line color="C_titlebar_highlight_focused" x1="2" x2="2" y1="3" y2="3" />
159		<line color="C_titlebar_highlight_focused" x1="width-5" x2="width-4" y1="2" y2="2" />
160		<line color="C_titlebar_highlight_focused" x1="width-3" x2="width-3" y1="3" y2="3" />
161	</draw_ops>
162
163	<draw_ops name="rounded_border_unfocused">
164		<line color="C_titlebar_border_unfocused" x1="2" y1="0" x2="width-3" y2="0" />
165		<line color="C_titlebar_border_unfocused" x1="1" y1="top_height-1" x2="width-1" y2="top_height-1" />
166		<line color="C_border_unfocused" x1="0" y1="height-1" x2="width-1" y2="height-1" />
167		<line color="C_border_unfocused" x1="0" y1="2" x2="0" y2="height-2" />
168		<line color="C_border_unfocused" x1="width-1" y1="2" x2="width-1" y2="height-2" />
169
170		<!-- left arch -->
171		<line color="C_titlebar_border_unfocused" x1="0" x2="4" y1="1" y2="1" />
172		<line color="C_titlebar_border_unfocused" x1="0" x2="2" y1="2" y2="2" />
173		<line color="C_titlebar_border_unfocused" x1="0" x2="1" y1="3" y2="3" />
174		<line color="C_titlebar_border_unfocused" x1="0" x2="1" y1="4" y2="4" />
175		<!-- left title bar edge -->
176		<gradient type="vertical" x="0" y="2" width="1" height="height/3">
177			<color value="C_titlebar_border_unfocused" />
178			<color value="C_border_unfocused" />
179		</gradient>
180
181		<!-- right arch -->
182		<line color="C_titlebar_border_unfocused" x1="width-5" x2="width" y1="1" y2="1" />
183		<line color="C_titlebar_border_unfocused" x1="width-3" x2="width" y1="2" y2="2" />
184		<line color="C_titlebar_border_unfocused" x1="width-2" x2="width" y1="3" y2="3" />
185		<line color="C_titlebar_border_unfocused" x1="width-2" x2="width" y1="4" y2="4" />
186		<!-- right title bar edge -->
187		<gradient type="vertical" x="width-1" y="2" width="1" height="height/3">
188			<color value="C_titlebar_border_unfocused" />
189			<color value="C_border_unfocused" />
190		</gradient>
191
192		<!-- title bar top highlight -->
193		<line color="C_titlebar_highlight_unfocused" x1="5" y1="1" x2="width-6" y2="1" />
194		<line color="C_titlebar_highlight_unfocused" x1="3" x2="4" y1="2" y2="2" />
195		<line color="C_titlebar_highlight_unfocused" x1="2" x2="2" y1="3" y2="3" />
196		<line color="C_titlebar_highlight_unfocused" x1="width-5" x2="width-4" y1="2" y2="2" />
197		<line color="C_titlebar_highlight_unfocused" x1="width-3" x2="width-3" y1="3" y2="3" />
198	</draw_ops>
199
200	<draw_ops name="rounded_border_shaded_focused">
201		<line color="C_titlebar_border_focused" x1="2" y1="0" x2="width-3" y2="0" />
202		<line color="C_titlebar_border_unfocused" x1="1" y1="top_height-1" x2="width-1" y2="top_height-1" />
203		<line color="C_titlebar_border_focused" x1="0" y1="height-1" x2="width-1" y2="height-1" />
204		<line color="C_titlebar_border_focused" x1="0" y1="2" x2="0" y2="height-2" />
205		<line color="C_titlebar_border_focused" x1="width-1" y1="2" x2="width-1" y2="height-2" />
206
207		<!-- left arch -->
208		<line color="C_titlebar_border_focused" x1="0" x2="4" y1="1" y2="1" />
209		<line color="C_titlebar_border_focused" x1="0" x2="2" y1="2" y2="2" />
210		<line color="C_titlebar_border_focused" x1="0" x2="1" y1="3" y2="3" />
211		<line color="C_titlebar_border_focused" x1="0" x2="1" y1="4" y2="4" />
212
213		<!-- right arch -->
214		<line color="C_titlebar_border_focused" x1="width-5" x2="width" y1="1" y2="1" />
215		<line color="C_titlebar_border_focused" x1="width-3" x2="width" y1="2" y2="2" />
216		<line color="C_titlebar_border_focused" x1="width-2" x2="width" y1="3" y2="3" />
217		<line color="C_titlebar_border_focused" x1="width-2" x2="width" y1="4" y2="4" />
218
219		<!-- title bar top highlight -->
220		<line color="C_titlebar_highlight_focused" x1="5" y1="1" x2="width-6" y2="1" />
221		<line color="C_titlebar_highlight_focused" x1="3" x2="4" y1="2" y2="2" />
222		<line color="C_titlebar_highlight_focused" x1="2" x2="2" y1="3" y2="3" />
223		<line color="C_titlebar_highlight_focused" x1="width-5" x2="width-4" y1="2" y2="2" />
224		<line color="C_titlebar_highlight_focused" x1="width-3" x2="width-3" y1="3" y2="3" />
225	</draw_ops>
226
227	<draw_ops name="rounded_border_shaded_unfocused">
228		<line color="C_titlebar_border_unfocused" x1="2" y1="0" x2="width-3" y2="0" />
229		<line color="C_titlebar_border_unfocused" x1="1" y1="top_height-1" x2="width-1" y2="top_height-1" />
230		<line color="C_titlebar_border_unfocused" x1="0" y1="height-1" x2="width-1" y2="height-1" />
231		<line color="C_titlebar_border_unfocused" x1="0" y1="2" x2="0" y2="height-2" />
232		<line color="C_titlebar_border_unfocused" x1="width-1" y1="2" x2="width-1" y2="height-2" />
233
234		<!-- left arch -->
235		<line color="C_titlebar_border_unfocused" x1="0" x2="4" y1="1" y2="1" />
236		<line color="C_titlebar_border_unfocused" x1="0" x2="2" y1="2" y2="2" />
237		<line color="C_titlebar_border_unfocused" x1="0" x2="1" y1="3" y2="3" />
238		<line color="C_titlebar_border_unfocused" x1="0" x2="1" y1="4" y2="4" />
239
240		<!-- right arch -->
241		<line color="C_titlebar_border_unfocused" x1="width-5" x2="width" y1="1" y2="1" />
242		<line color="C_titlebar_border_unfocused" x1="width-3" x2="width" y1="2" y2="2" />
243		<line color="C_titlebar_border_unfocused" x1="width-2" x2="width" y1="3" y2="3" />
244		<line color="C_titlebar_border_unfocused" x1="width-2" x2="width" y1="4" y2="4" />
245
246		<!-- title bar top highlight -->
247		<line color="C_titlebar_highlight_unfocused" x1="5" y1="1" x2="width-6" y2="1" />
248		<line color="C_titlebar_highlight_unfocused" x1="3" x2="4" y1="2" y2="2" />
249		<line color="C_titlebar_highlight_unfocused" x1="2" x2="2" y1="3" y2="3" />
250		<line color="C_titlebar_highlight_unfocused" x1="width-5" x2="width-4" y1="2" y2="2" />
251		<line color="C_titlebar_highlight_unfocused" x1="width-3" x2="width-3" y1="3" y2="3" />
252	</draw_ops>
253
254	<!-- maximized -->
255	<draw_ops name="max_border_focused">
256		<line color="C_titlebar_highlight_focused" x1="0" y1="0" x2="width" y2="0" />
257		<line color="C_titlebar_border_unfocused" x1="0" y1="top_height-1" x2="width" y2="top_height-1" />
258	</draw_ops>
259
260	<draw_ops name="max_border_unfocused">
261		<line color="C_titlebar_highlight_unfocused" x1="0" y1="0" x2="width" y2="0" />
262		<line color="C_titlebar_border_unfocused" x1="0" y1="top_height-1" x2="width" y2="top_height-1" />
263	</draw_ops>
264
265	<!-- tiled -->
266	<draw_ops name="tiled_left_border_focused">
267		<include name="max_border_focused" />
268	</draw_ops>
269
270	<draw_ops name="tiled_left_border_unfocused">
271		<include name="max_border_unfocused" />
272	</draw_ops>
273
274	<draw_ops name="tiled_right_border_focused">
275		<line color="C_titlebar_highlight_focused" x1="0" y1="0" x2="width" y2="0" />
276		<line color="C_titlebar_border_unfocused" x1="0" y1="top_height-1" x2="width" y2="top_height-1" />
277		<line color="C_titlebar_border_focused" x1="0" y1="1" x2="0" y2="top_height-2" />
278		<line color="C_titlebar_border_focused" x1="0" y1="top_height" x2="0" y2="height" />
279	</draw_ops>
280
281	<draw_ops name="tiled_right_border_unfocused">
282		<line color="C_titlebar_highlight_unfocused" x1="0" y1="0" x2="width" y2="0" />
283		<line color="C_titlebar_border_unfocused" x1="0" y1="top_height-1" x2="width" y2="top_height-1" />
284		<line color="C_titlebar_border_focused" x1="0" y1="1" x2="0" y2="top_height-2" />
285		<line color="C_titlebar_border_focused" x1="0" y1="top_height" x2="0" y2="height" />
286	</draw_ops>
287
288	<!-- BUTTON ICONS -->
289	<!-- note: negative values in x or y causes gnome-shell to crash -->
290
291	<!-- Close icon -->
292	<draw_ops name="close_focused">
293		<image filename="close_focused_normal.svg" x="0" y="2" width="object_width" height="object_height" />
294	</draw_ops>
295	<draw_ops name="close_focused_prelight">
296		<image filename="close_focused_prelight.svg" x="0" y="2" width="object_width" height="object_height" />
297	</draw_ops>
298	<draw_ops name="close_focused_pressed">
299		<image filename="close_focused_pressed.svg" x="0" y="2" width="object_width" height="object_height" />
300	</draw_ops>
301	<draw_ops name="close_unfocused">
302		<image filename="close_unfocused.svg" x="0" y="2" width="object_width" height="object_height" />
303	</draw_ops>
304	<draw_ops name="close_unfocused_prelight">
305		<image filename="close_unfocused_prelight.svg" x="0" y="2" width="object_width" height="object_height" />
306	</draw_ops>
307	<draw_ops name="close_unfocused_pressed">
308		<image filename="close_unfocused_pressed.svg" x="0" y="2" width="object_width" height="object_height" />
309	</draw_ops>
310
311	<!-- Maximize icon -->
312	<draw_ops name="maximize_focused">
313		<image filename="maximize_focused_normal.svg" x="0" y="2" width="object_width" height="object_height" />
314	</draw_ops>
315	<draw_ops name="maximize_focused_prelight">
316		<image filename="maximize_focused_prelight.svg" x="0" y="2" width="object_width" height="object_height" />
317	</draw_ops>
318	<draw_ops name="maximize_focused_pressed">
319		<image filename="maximize_focused_pressed.svg" x="0" y="2" width="object_width" height="object_height" />
320	</draw_ops>
321	<draw_ops name="maximize_unfocused">
322		<image filename="maximize_unfocused.svg" x="0" y="2" width="object_width" height="object_height" />
323	</draw_ops>
324	<draw_ops name="maximize_unfocused_prelight">
325		<image filename="maximize_unfocused_prelight.svg" x="0" y="2" width="object_width" height="object_height" />
326	</draw_ops>
327	<draw_ops name="maximize_unfocused_pressed">
328		<image filename="maximize_unfocused_pressed.svg" x="0" y="2" width="object_width" height="object_height" />
329	</draw_ops>
330
331	<!-- Unmaximize icon -->
332	<draw_ops name="unmaximize_focused">
333		<image filename="unmaximize_focused_normal.svg" x="0" y="2" width="object_width" height="object_height" />
334	</draw_ops>
335	<draw_ops name="unmaximize_focused_prelight">
336		<image filename="unmaximize_focused_prelight.svg" x="0" y="2" width="object_width" height="object_height" />
337	</draw_ops>
338	<draw_ops name="unmaximize_focused_pressed">
339		<image filename="unmaximize_focused_pressed.svg" x="0" y="2" width="object_width" height="object_height" />
340	</draw_ops>
341	<draw_ops name="unmaximize_unfocused">
342		<image filename="unmaximize_unfocused.svg" x="0" y="2" width="object_width" height="object_height" />
343	</draw_ops>
344	<draw_ops name="unmaximize_unfocused_prelight">
345		<image filename="unmaximize_unfocused_prelight.svg" x="0" y="2" width="object_width" height="object_height" />
346	</draw_ops>
347	<draw_ops name="unmaximize_unfocused_pressed">
348		<image filename="unmaximize_unfocused_pressed.svg" x="0" y="2" width="object_width" height="object_height" />
349	</draw_ops>
350
351	<!-- Minimize icon -->
352	<draw_ops name="minimize_focused">
353		<image filename="minimize_focused_normal.svg" x="0" y="2" width="object_width" height="object_height" />
354	</draw_ops>
355	<draw_ops name="minimize_focused_prelight">
356		<image filename="minimize_focused_prelight.svg" x="0" y="2" width="object_width" height="object_height" />
357	</draw_ops>
358	<draw_ops name="minimize_focused_pressed">
359		<image filename="minimize_focused_pressed.svg" x="0" y="2" width="object_width" height="object_height" />
360	</draw_ops>
361	<draw_ops name="minimize_unfocused">
362		<image filename="minimize_unfocused.svg" x="0" y="2" width="object_width" height="object_height" />
363	</draw_ops>
364	<draw_ops name="minimize_unfocused_prelight">
365		<image filename="minimize_unfocused_prelight.svg" x="0" y="2" width="object_width" height="object_height" />
366	</draw_ops>
367	<draw_ops name="minimize_unfocused_pressed">
368		<image filename="minimize_unfocused_pressed.svg" x="0" y="2" width="object_width" height="object_height" />
369	</draw_ops>
370
371	<!-- Menu icon -->
372	<draw_ops name="menu_focused">
373		<image filename="menu_focused_normal.svg" x="0" y="2" width="object_width" height="object_height" />
374	</draw_ops>
375	<draw_ops name="menu_focused_prelight">
376		<image filename="menu_focused_prelight.svg" x="0" y="2" width="object_width" height="object_height" />
377	</draw_ops>
378	<draw_ops name="menu_focused_pressed">
379		<image filename="menu_focused_pressed.svg" x="0" y="2" width="object_width" height="object_height" />
380	</draw_ops>
381	<draw_ops name="menu_unfocused">
382		<image filename="menu_unfocused.svg" x="0" y="2" width="object_width" height="object_height" />
383	</draw_ops>
384	<draw_ops name="menu_unfocused_prelight">
385		<image filename="menu_unfocused_prelight.svg" x="0" y="2" width="object_width" height="object_height" />
386	</draw_ops>
387	<draw_ops name="menu_unfocused_pressed">
388		<image filename="menu_unfocused_pressed.svg" x="0" y="2" width="object_width" height="object_height" />
389	</draw_ops>
390
391	<!-- FRAME STYLES -->
392	<frame_style name="normal_focused" geometry="normal">
393		<piece position="entire_background" draw_ops="entire_background_focused" />
394		<piece position="titlebar" draw_ops="titlebar_fill_focused" />
395		<piece position="title" draw_ops="title_focused" />
396		<piece position="overlay" draw_ops="rounded_border_focused" />
397		<button function="close" state="normal" draw_ops="close_focused" />
398		<button function="close" state="prelight" draw_ops="close_focused_prelight" />
399		<button function="close" state="pressed" draw_ops="close_focused_pressed" />
400		<button function="maximize" state="normal" draw_ops="maximize_focused" />
401		<button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" />
402		<button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" />
403		<button function="minimize" state="normal" draw_ops="minimize_focused" />
404		<button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" />
405		<button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" />
406		<button function="menu" state="normal" draw_ops="menu_focused" />
407		<button function="menu" state="prelight" draw_ops="menu_focused_prelight" />
408		<button function="menu" state="pressed" draw_ops="menu_focused_pressed" />
409		<button function="shade" state="normal"><draw_ops></draw_ops></button>
410		<button function="shade" state="prelight"><draw_ops></draw_ops></button>
411		<button function="shade" state="pressed"><draw_ops></draw_ops></button>
412		<button function="unshade" state="normal"><draw_ops></draw_ops></button>
413		<button function="unshade" state="prelight"><draw_ops></draw_ops></button>
414		<button function="unshade" state="pressed"><draw_ops></draw_ops></button>
415		<button function="above" state="normal"><draw_ops></draw_ops></button>
416		<button function="above" state="pressed"><draw_ops></draw_ops></button>
417		<button function="unabove" state="normal"><draw_ops></draw_ops></button>
418		<button function="unabove" state="pressed"><draw_ops></draw_ops></button>
419		<button function="stick" state="normal"><draw_ops></draw_ops></button>
420		<button function="stick" state="pressed"><draw_ops></draw_ops></button>
421		<button function="unstick" state="normal"><draw_ops></draw_ops></button>
422		<button function="unstick" state="pressed"><draw_ops></draw_ops></button>
423	</frame_style>
424
425	<frame_style name="normal_unfocused" geometry="normal">
426		<piece position="entire_background" draw_ops="entire_background_unfocused" />
427		<piece position="titlebar" draw_ops="titlebar_fill_unfocused" />
428		<piece position="title" draw_ops="title_unfocused" />
429		<piece position="overlay" draw_ops="rounded_border_unfocused" />
430		<button function="close" state="normal" draw_ops="close_unfocused" />
431		<button function="close" state="prelight" draw_ops="close_unfocused_prelight" />
432		<button function="close" state="pressed" draw_ops="close_unfocused_pressed" />
433		<button function="maximize" state="normal" draw_ops="maximize_unfocused" />
434		<button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" />
435		<button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" />
436		<button function="minimize" state="normal" draw_ops="minimize_unfocused" />
437		<button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" />
438		<button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" />
439		<button function="menu" state="normal" draw_ops="menu_unfocused" />
440		<button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" />
441		<button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" />
442		<button function="shade" state="normal"><draw_ops></draw_ops></button>
443		<button function="shade" state="prelight"><draw_ops></draw_ops></button>
444		<button function="shade" state="pressed"><draw_ops></draw_ops></button>
445		<button function="unshade" state="normal"><draw_ops></draw_ops></button>
446		<button function="unshade" state="prelight"><draw_ops></draw_ops></button>
447		<button function="unshade" state="pressed"><draw_ops></draw_ops></button>
448		<button function="above" state="normal"><draw_ops></draw_ops></button>
449		<button function="above" state="pressed"><draw_ops></draw_ops></button>
450		<button function="unabove" state="normal"><draw_ops></draw_ops></button>
451		<button function="unabove" state="pressed"><draw_ops></draw_ops></button>
452		<button function="stick" state="normal"><draw_ops></draw_ops></button>
453		<button function="stick" state="pressed"><draw_ops></draw_ops></button>
454		<button function="unstick" state="normal"><draw_ops></draw_ops></button>
455		<button function="unstick" state="pressed"><draw_ops></draw_ops></button>
456	</frame_style>
457
458	<frame_style name="normal_shaded_focused" geometry="normal_shaded">
459		<piece position="entire_background" draw_ops="entire_background_focused" />
460		<piece position="titlebar" draw_ops="titlebar_fill_focused" />
461		<piece position="title" draw_ops="title_focused" />
462		<piece position="overlay" draw_ops="rounded_border_shaded_focused" />
463		<button function="close" state="normal" draw_ops="close_focused" />
464		<button function="close" state="prelight" draw_ops="close_focused_prelight" />
465		<button function="close" state="pressed" draw_ops="close_focused_pressed" />
466		<button function="maximize" state="normal" draw_ops="maximize_focused" />
467		<button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" />
468		<button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" />
469		<button function="minimize" state="normal" draw_ops="minimize_focused" />
470		<button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" />
471		<button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" />
472		<button function="menu" state="normal" draw_ops="menu_focused" />
473		<button function="menu" state="prelight" draw_ops="menu_focused_prelight" />
474		<button function="menu" state="pressed" draw_ops="menu_focused_pressed" />
475		<button function="shade" state="normal"><draw_ops></draw_ops></button>
476		<button function="shade" state="prelight"><draw_ops></draw_ops></button>
477		<button function="shade" state="pressed"><draw_ops></draw_ops></button>
478		<button function="unshade" state="normal"><draw_ops></draw_ops></button>
479		<button function="unshade" state="prelight"><draw_ops></draw_ops></button>
480		<button function="unshade" state="pressed"><draw_ops></draw_ops></button>
481		<button function="above" state="normal"><draw_ops></draw_ops></button>
482		<button function="above" state="pressed"><draw_ops></draw_ops></button>
483		<button function="unabove" state="normal"><draw_ops></draw_ops></button>
484		<button function="unabove" state="pressed"><draw_ops></draw_ops></button>
485		<button function="stick" state="normal"><draw_ops></draw_ops></button>
486		<button function="stick" state="pressed"><draw_ops></draw_ops></button>
487		<button function="unstick" state="normal"><draw_ops></draw_ops></button>
488		<button function="unstick" state="pressed"><draw_ops></draw_ops></button>
489	</frame_style>
490
491	<frame_style name="normal_shaded_unfocused" geometry="normal_shaded">
492		<piece position="entire_background" draw_ops="entire_background_unfocused" />
493		<piece position="titlebar" draw_ops="titlebar_fill_unfocused" />
494		<piece position="title" draw_ops="title_unfocused" />
495		<piece position="overlay" draw_ops="rounded_border_shaded_unfocused" />
496		<button function="close" state="normal" draw_ops="close_unfocused" />
497		<button function="close" state="prelight" draw_ops="close_unfocused_prelight" />
498		<button function="close" state="pressed" draw_ops="close_unfocused_pressed" />
499		<button function="maximize" state="normal" draw_ops="maximize_unfocused" />
500		<button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" />
501		<button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" />
502		<button function="minimize" state="normal" draw_ops="minimize_unfocused" />
503		<button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" />
504		<button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" />
505		<button function="menu" state="normal" draw_ops="menu_unfocused" />
506		<button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" />
507		<button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" />
508		<button function="shade" state="normal"><draw_ops></draw_ops></button>
509		<button function="shade" state="prelight"><draw_ops></draw_ops></button>
510		<button function="shade" state="pressed"><draw_ops></draw_ops></button>
511		<button function="unshade" state="normal"><draw_ops></draw_ops></button>
512		<button function="unshade" state="prelight"><draw_ops></draw_ops></button>
513		<button function="unshade" state="pressed"><draw_ops></draw_ops></button>
514		<button function="above" state="normal"><draw_ops></draw_ops></button>
515		<button function="above" state="pressed"><draw_ops></draw_ops></button>
516		<button function="unabove" state="normal"><draw_ops></draw_ops></button>
517		<button function="unabove" state="pressed"><draw_ops></draw_ops></button>
518		<button function="stick" state="normal"><draw_ops></draw_ops></button>
519		<button function="stick" state="pressed"><draw_ops></draw_ops></button>
520		<button function="unstick" state="normal"><draw_ops></draw_ops></button>
521		<button function="unstick" state="pressed"><draw_ops></draw_ops></button>
522	</frame_style>
523
524	<frame_style name="normal_max_focused" geometry="max">
525		<piece position="entire_background" draw_ops="entire_background_focused" />
526		<piece position="titlebar" draw_ops="titlebar_fill_focused" />
527		<piece position="title" draw_ops="title_focused" />
528		<piece position="overlay" draw_ops="max_border_focused" />
529		<button function="close" state="normal" draw_ops="close_focused" />
530		<button function="close" state="prelight" draw_ops="close_focused_prelight" />
531		<button function="close" state="pressed" draw_ops="close_focused_pressed" />
532		<button function="maximize" state="normal" draw_ops="unmaximize_focused" />
533		<button function="maximize" state="prelight" draw_ops="unmaximize_focused_prelight" />
534		<button function="maximize" state="pressed" draw_ops="unmaximize_focused_pressed" />
535		<button function="minimize" state="normal" draw_ops="minimize_focused" />
536		<button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" />
537		<button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" />
538		<button function="menu" state="normal" draw_ops="menu_focused" />
539		<button function="menu" state="prelight" draw_ops="menu_focused_prelight" />
540		<button function="menu" state="pressed" draw_ops="menu_focused_pressed" />
541		<button function="shade" state="normal"><draw_ops></draw_ops></button>
542		<button function="shade" state="prelight"><draw_ops></draw_ops></button>
543		<button function="shade" state="pressed"><draw_ops></draw_ops></button>
544		<button function="unshade" state="normal"><draw_ops></draw_ops></button>
545		<button function="unshade" state="prelight"><draw_ops></draw_ops></button>
546		<button function="unshade" state="pressed"><draw_ops></draw_ops></button>
547		<button function="above" state="normal"><draw_ops></draw_ops></button>
548		<button function="above" state="pressed"><draw_ops></draw_ops></button>
549		<button function="unabove" state="normal"><draw_ops></draw_ops></button>
550		<button function="unabove" state="pressed"><draw_ops></draw_ops></button>
551		<button function="stick" state="normal"><draw_ops></draw_ops></button>
552		<button function="stick" state="pressed"><draw_ops></draw_ops></button>
553		<button function="unstick" state="normal"><draw_ops></draw_ops></button>
554		<button function="unstick" state="pressed"><draw_ops></draw_ops></button>
555	</frame_style>
556
557	<frame_style name="normal_max_unfocused" geometry="max">
558		<piece position="entire_background" draw_ops="entire_background_unfocused" />
559		<piece position="titlebar" draw_ops="titlebar_fill_unfocused" />
560		<piece position="title" draw_ops="title_unfocused" />
561		<piece position="overlay" draw_ops="max_border_focused" />
562		<button function="close" state="normal" draw_ops="close_unfocused" />
563		<button function="close" state="prelight" draw_ops="close_unfocused_prelight" />
564		<button function="close" state="pressed" draw_ops="close_unfocused_pressed" />
565		<button function="maximize" state="normal" draw_ops="unmaximize_unfocused" />
566		<button function="maximize" state="prelight" draw_ops="unmaximize_unfocused_prelight" />
567		<button function="maximize" state="pressed" draw_ops="unmaximize_unfocused_pressed" />
568		<button function="minimize" state="normal" draw_ops="minimize_unfocused" />
569		<button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" />
570		<button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" />
571		<button function="menu" state="normal" draw_ops="menu_unfocused" />
572		<button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" />
573		<button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" />
574		<button function="shade" state="normal"><draw_ops></draw_ops></button>
575		<button function="shade" state="prelight"><draw_ops></draw_ops></button>
576		<button function="shade" state="pressed"><draw_ops></draw_ops></button>
577		<button function="unshade" state="normal"><draw_ops></draw_ops></button>
578		<button function="unshade" state="prelight"><draw_ops></draw_ops></button>
579		<button function="unshade" state="pressed"><draw_ops></draw_ops></button>
580		<button function="above" state="normal"><draw_ops></draw_ops></button>
581		<button function="above" state="pressed"><draw_ops></draw_ops></button>
582		<button function="unabove" state="normal"><draw_ops></draw_ops></button>
583		<button function="unabove" state="pressed"><draw_ops></draw_ops></button>
584		<button function="stick" state="normal"><draw_ops></draw_ops></button>
585		<button function="stick" state="pressed"><draw_ops></draw_ops></button>
586		<button function="unstick" state="normal"><draw_ops></draw_ops></button>
587		<button function="unstick" state="pressed"><draw_ops></draw_ops></button>
588	</frame_style>
589
590	<frame_style name="normal_max_shaded_focused" geometry="max">
591		<piece position="entire_background" draw_ops="entire_background_focused" />
592		<piece position="titlebar" draw_ops="titlebar_fill_focused" />
593		<piece position="title" draw_ops="title_focused" />
594		<piece position="overlay" draw_ops="max_border_focused" />
595		<button function="close" state="normal" draw_ops="close_focused" />
596		<button function="close" state="prelight" draw_ops="close_focused_prelight" />
597		<button function="close" state="pressed" draw_ops="close_focused_pressed" />
598		<button function="maximize" state="normal" draw_ops="unmaximize_focused" />
599		<button function="maximize" state="prelight" draw_ops="unmaximize_focused_prelight" />
600		<button function="maximize" state="pressed" draw_ops="unmaximize_focused_pressed" />
601		<button function="minimize" state="normal" draw_ops="minimize_focused" />
602		<button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" />
603		<button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" />
604		<button function="menu" state="normal" draw_ops="menu_focused" />
605		<button function="menu" state="prelight" draw_ops="menu_focused_prelight" />
606		<button function="menu" state="pressed" draw_ops="menu_focused_pressed" />
607		<button function="shade" state="normal"><draw_ops></draw_ops></button>
608		<button function="shade" state="prelight"><draw_ops></draw_ops></button>
609		<button function="shade" state="pressed"><draw_ops></draw_ops></button>
610		<button function="unshade" state="normal"><draw_ops></draw_ops></button>
611		<button function="unshade" state="prelight"><draw_ops></draw_ops></button>
612		<button function="unshade" state="pressed"><draw_ops></draw_ops></button>
613		<button function="above" state="normal"><draw_ops></draw_ops></button>
614		<button function="above" state="pressed"><draw_ops></draw_ops></button>
615		<button function="unabove" state="normal"><draw_ops></draw_ops></button>
616		<button function="unabove" state="pressed"><draw_ops></draw_ops></button>
617		<button function="stick" state="normal"><draw_ops></draw_ops></button>
618		<button function="stick" state="pressed"><draw_ops></draw_ops></button>
619		<button function="unstick" state="normal"><draw_ops></draw_ops></button>
620		<button function="unstick" state="pressed"><draw_ops></draw_ops></button>
621	</frame_style>
622
623	<frame_style name="normal_max_shaded_unfocused" geometry="max">
624		<piece position="entire_background" draw_ops="entire_background_unfocused" />
625		<piece position="titlebar" draw_ops="titlebar_fill_unfocused" />
626		<piece position="title" draw_ops="title_unfocused" />
627		<piece position="overlay" draw_ops="max_border_unfocused" />
628		<button function="close" state="normal" draw_ops="close_unfocused" />
629		<button function="close" state="prelight" draw_ops="close_unfocused_prelight" />
630		<button function="close" state="pressed" draw_ops="close_unfocused_pressed" />
631		<button function="maximize" state="normal" draw_ops="unmaximize_unfocused" />
632		<button function="maximize" state="prelight" draw_ops="unmaximize_unfocused_prelight" />
633		<button function="maximize" state="pressed" draw_ops="unmaximize_unfocused_pressed" />
634		<button function="minimize" state="normal" draw_ops="minimize_unfocused" />
635		<button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" />
636		<button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" />
637		<button function="menu" state="normal" draw_ops="menu_unfocused" />
638		<button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" />
639		<button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" />
640		<button function="shade" state="normal"><draw_ops></draw_ops></button>
641		<button function="shade" state="prelight"><draw_ops></draw_ops></button>
642		<button function="shade" state="pressed"><draw_ops></draw_ops></button>
643		<button function="unshade" state="normal"><draw_ops></draw_ops></button>
644		<button function="unshade" state="prelight"><draw_ops></draw_ops></button>
645		<button function="unshade" state="pressed"><draw_ops></draw_ops></button>
646		<button function="above" state="normal"><draw_ops></draw_ops></button>
647		<button function="above" state="pressed"><draw_ops></draw_ops></button>
648		<button function="unabove" state="normal"><draw_ops></draw_ops></button>
649		<button function="unabove" state="pressed"><draw_ops></draw_ops></button>
650		<button function="stick" state="normal"><draw_ops></draw_ops></button>
651		<button function="stick" state="pressed"><draw_ops></draw_ops></button>
652		<button function="unstick" state="normal"><draw_ops></draw_ops></button>
653		<button function="unstick" state="pressed"><draw_ops></draw_ops></button>
654	</frame_style>
655
656	<frame_style name="dialog_focused" geometry="nobuttons">
657		<piece position="entire_background" draw_ops="entire_background_focused" />
658		<piece position="titlebar" draw_ops="titlebar_fill_focused" />
659		<piece position="title" draw_ops="title_focused" />
660		<piece position="overlay" draw_ops="rounded_border_focused" />
661		<button function="close" state="normal" draw_ops="close_focused" />
662		<button function="close" state="prelight" draw_ops="close_focused_prelight" />
663		<button function="close" state="pressed" draw_ops="close_focused_pressed" />
664		<button function="maximize" state="normal" draw_ops="maximize_focused" />
665		<button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" />
666		<button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" />
667		<button function="minimize" state="normal" draw_ops="minimize_focused" />
668		<button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" />
669		<button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" />
670		<button function="menu" state="normal" draw_ops="menu_focused" />
671		<button function="menu" state="prelight" draw_ops="menu_focused_prelight" />
672		<button function="menu" state="pressed" draw_ops="menu_focused_pressed" />
673		<button function="shade" state="normal"><draw_ops></draw_ops></button>
674		<button function="shade" state="prelight"><draw_ops></draw_ops></button>
675		<button function="shade" state="pressed"><draw_ops></draw_ops></button>
676		<button function="unshade" state="normal"><draw_ops></draw_ops></button>
677		<button function="unshade" state="prelight"><draw_ops></draw_ops></button>
678		<button function="unshade" state="pressed"><draw_ops></draw_ops></button>
679		<button function="above" state="normal"><draw_ops></draw_ops></button>
680		<button function="above" state="pressed"><draw_ops></draw_ops></button>
681		<button function="unabove" state="normal"><draw_ops></draw_ops></button>
682		<button function="unabove" state="pressed"><draw_ops></draw_ops></button>
683		<button function="stick" state="normal"><draw_ops></draw_ops></button>
684		<button function="stick" state="pressed"><draw_ops></draw_ops></button>
685		<button function="unstick" state="normal"><draw_ops></draw_ops></button>
686		<button function="unstick" state="pressed"><draw_ops></draw_ops></button>
687	</frame_style>
688
689	<frame_style name="dialog_unfocused" geometry="nobuttons">
690		<piece position="entire_background" draw_ops="entire_background_unfocused" />
691		<piece position="titlebar" draw_ops="titlebar_fill_unfocused" />
692		<piece position="title" draw_ops="title_unfocused" />
693		<piece position="overlay" draw_ops="rounded_border_unfocused" />
694		<button function="close" state="normal" draw_ops="close_unfocused" />
695		<button function="close" state="prelight" draw_ops="close_unfocused_prelight" />
696		<button function="close" state="pressed" draw_ops="close_unfocused_pressed" />
697		<button function="maximize" state="normal" draw_ops="maximize_unfocused" />
698		<button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" />
699		<button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" />
700		<button function="minimize" state="normal" draw_ops="minimize_unfocused" />
701		<button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" />
702		<button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" />
703		<button function="menu" state="normal" draw_ops="menu_unfocused" />
704		<button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" />
705		<button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" />
706		<button function="shade" state="normal"><draw_ops></draw_ops></button>
707		<button function="shade" state="prelight"><draw_ops></draw_ops></button>
708		<button function="shade" state="pressed"><draw_ops></draw_ops></button>
709		<button function="unshade" state="normal"><draw_ops></draw_ops></button>
710		<button function="unshade" state="prelight"><draw_ops></draw_ops></button>
711		<button function="unshade" state="pressed"><draw_ops></draw_ops></button>
712		<button function="above" state="normal"><draw_ops></draw_ops></button>
713		<button function="above" state="pressed"><draw_ops></draw_ops></button>
714		<button function="unabove" state="normal"><draw_ops></draw_ops></button>
715		<button function="unabove" state="pressed"><draw_ops></draw_ops></button>
716		<button function="stick" state="normal"><draw_ops></draw_ops></button>
717		<button function="stick" state="pressed"><draw_ops></draw_ops></button>
718		<button function="unstick" state="normal"><draw_ops></draw_ops></button>
719		<button function="unstick" state="pressed"><draw_ops></draw_ops></button>
720	</frame_style>
721
722	<frame_style name="dialog_shaded_focused" geometry="nobuttons_shaded">
723		<piece position="entire_background" draw_ops="entire_background_focused" />
724		<piece position="titlebar" draw_ops="titlebar_fill_focused" />
725		<piece position="title" draw_ops="title_focused" />
726		<piece position="overlay" draw_ops="rounded_border_shaded_focused" />
727		<button function="close" state="normal" draw_ops="close_focused" />
728		<button function="close" state="prelight" draw_ops="close_focused_prelight" />
729		<button function="close" state="pressed" draw_ops="close_focused_pressed" />
730		<button function="maximize" state="normal" draw_ops="maximize_focused" />
731		<button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" />
732		<button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" />
733		<button function="minimize" state="normal" draw_ops="minimize_focused" />
734		<button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" />
735		<button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" />
736		<button function="menu" state="normal" draw_ops="menu_focused" />
737		<button function="menu" state="prelight" draw_ops="menu_focused_prelight" />
738		<button function="menu" state="pressed" draw_ops="menu_focused_pressed" />
739		<button function="shade" state="normal"><draw_ops></draw_ops></button>
740		<button function="shade" state="prelight"><draw_ops></draw_ops></button>
741		<button function="shade" state="pressed"><draw_ops></draw_ops></button>
742		<button function="unshade" state="normal"><draw_ops></draw_ops></button>
743		<button function="unshade" state="prelight"><draw_ops></draw_ops></button>
744		<button function="unshade" state="pressed"><draw_ops></draw_ops></button>
745		<button function="above" state="normal"><draw_ops></draw_ops></button>
746		<button function="above" state="pressed"><draw_ops></draw_ops></button>
747		<button function="unabove" state="normal"><draw_ops></draw_ops></button>
748		<button function="unabove" state="pressed"><draw_ops></draw_ops></button>
749		<button function="stick" state="normal"><draw_ops></draw_ops></button>
750		<button function="stick" state="pressed"><draw_ops></draw_ops></button>
751		<button function="unstick" state="normal"><draw_ops></draw_ops></button>
752		<button function="unstick" state="pressed"><draw_ops></draw_ops></button>
753	</frame_style>
754
755	<frame_style name="dialog_shaded_unfocused" geometry="nobuttons_shaded">
756		<piece position="entire_background" draw_ops="entire_background_unfocused" />
757		<piece position="titlebar" draw_ops="titlebar_fill_unfocused" />
758		<piece position="title" draw_ops="title_unfocused" />
759		<piece position="overlay" draw_ops="rounded_border_shaded_unfocused" />
760		<button function="close" state="normal" draw_ops="close_unfocused" />
761		<button function="close" state="prelight" draw_ops="close_unfocused_prelight" />
762		<button function="close" state="pressed" draw_ops="close_unfocused_pressed" />
763		<button function="maximize" state="normal" draw_ops="maximize_unfocused" />
764		<button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" />
765		<button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" />
766		<button function="minimize" state="normal" draw_ops="minimize_unfocused" />
767		<button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" />
768		<button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" />
769		<button function="menu" state="normal" draw_ops="menu_unfocused" />
770		<button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" />
771		<button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" />
772		<button function="shade" state="normal"><draw_ops></draw_ops></button>
773		<button function="shade" state="prelight"><draw_ops></draw_ops></button>
774		<button function="shade" state="pressed"><draw_ops></draw_ops></button>
775		<button function="unshade" state="normal"><draw_ops></draw_ops></button>
776		<button function="unshade" state="prelight"><draw_ops></draw_ops></button>
777		<button function="unshade" state="pressed"><draw_ops></draw_ops></button>
778		<button function="above" state="normal"><draw_ops></draw_ops></button>
779		<button function="above" state="pressed"><draw_ops></draw_ops></button>
780		<button function="unabove" state="normal"><draw_ops></draw_ops></button>
781		<button function="unabove" state="pressed"><draw_ops></draw_ops></button>
782		<button function="stick" state="normal"><draw_ops></draw_ops></button>
783		<button function="stick" state="pressed"><draw_ops></draw_ops></button>
784		<button function="unstick" state="normal"><draw_ops></draw_ops></button>
785		<button function="unstick" state="pressed"><draw_ops></draw_ops></button>
786	</frame_style>
787
788	<frame_style name="modal_dialog_focused" geometry="nobuttons">
789		<piece position="entire_background" draw_ops="entire_background_focused" />
790		<piece position="titlebar" draw_ops="titlebar_fill_focused" />
791		<piece position="title" draw_ops="title_focused" />
792		<piece position="overlay" draw_ops="rounded_border_focused" />
793		<button function="close" state="normal" draw_ops="close_focused" />
794		<button function="close" state="prelight" draw_ops="close_focused_prelight" />
795		<button function="close" state="pressed" draw_ops="close_focused_pressed" />
796		<button function="maximize" state="normal" draw_ops="maximize_focused" />
797		<button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" />
798		<button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" />
799		<button function="minimize" state="normal" draw_ops="minimize_focused" />
800		<button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" />
801		<button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" />
802		<button function="menu" state="normal" draw_ops="menu_focused" />
803		<button function="menu" state="prelight" draw_ops="menu_focused_prelight" />
804		<button function="menu" state="pressed" draw_ops="menu_focused_pressed" />
805		<button function="shade" state="normal"><draw_ops></draw_ops></button>
806		<button function="shade" state="prelight"><draw_ops></draw_ops></button>
807		<button function="shade" state="pressed"><draw_ops></draw_ops></button>
808		<button function="unshade" state="normal"><draw_ops></draw_ops></button>
809		<button function="unshade" state="prelight"><draw_ops></draw_ops></button>
810		<button function="unshade" state="pressed"><draw_ops></draw_ops></button>
811		<button function="above" state="normal"><draw_ops></draw_ops></button>
812		<button function="above" state="pressed"><draw_ops></draw_ops></button>
813		<button function="unabove" state="normal"><draw_ops></draw_ops></button>
814		<button function="unabove" state="pressed"><draw_ops></draw_ops></button>
815		<button function="stick" state="normal"><draw_ops></draw_ops></button>
816		<button function="stick" state="pressed"><draw_ops></draw_ops></button>
817		<button function="unstick" state="normal"><draw_ops></draw_ops></button>
818		<button function="unstick" state="pressed"><draw_ops></draw_ops></button>
819	</frame_style>
820
821	<frame_style name="modal_dialog_unfocused" geometry="nobuttons">
822		<piece position="entire_background" draw_ops="entire_background_unfocused" />
823		<piece position="titlebar" draw_ops="titlebar_fill_unfocused" />
824		<piece position="title" draw_ops="title_unfocused" />
825		<piece position="overlay" draw_ops="rounded_border_unfocused" />
826		<button function="close" state="normal" draw_ops="close_unfocused" />
827		<button function="close" state="prelight" draw_ops="close_unfocused_prelight" />
828		<button function="close" state="pressed" draw_ops="close_unfocused_pressed" />
829		<button function="maximize" state="normal" draw_ops="maximize_unfocused" />
830		<button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" />
831		<button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" />
832		<button function="minimize" state="normal" draw_ops="minimize_unfocused" />
833		<button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" />
834		<button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" />
835		<button function="menu" state="normal" draw_ops="menu_unfocused" />
836		<button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" />
837		<button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" />
838		<button function="shade" state="normal"><draw_ops></draw_ops></button>
839		<button function="shade" state="prelight"><draw_ops></draw_ops></button>
840		<button function="shade" state="pressed"><draw_ops></draw_ops></button>
841		<button function="unshade" state="normal"><draw_ops></draw_ops></button>
842		<button function="unshade" state="prelight"><draw_ops></draw_ops></button>
843		<button function="unshade" state="pressed"><draw_ops></draw_ops></button>
844		<button function="above" state="normal"><draw_ops></draw_ops></button>
845		<button function="above" state="pressed"><draw_ops></draw_ops></button>
846		<button function="unabove" state="normal"><draw_ops></draw_ops></button>
847		<button function="unabove" state="pressed"><draw_ops></draw_ops></button>
848		<button function="stick" state="normal"><draw_ops></draw_ops></button>
849		<button function="stick" state="pressed"><draw_ops></draw_ops></button>
850		<button function="unstick" state="normal"><draw_ops></draw_ops></button>
851		<button function="unstick" state="pressed"><draw_ops></draw_ops></button>
852	</frame_style>
853
854	<frame_style name="modal_dialog_shaded_focused" geometry="nobuttons_shaded">
855		<piece position="entire_background" draw_ops="entire_background_focused" />
856		<piece position="titlebar" draw_ops="titlebar_fill_focused" />
857		<piece position="title" draw_ops="title_focused" />
858		<piece position="overlay" draw_ops="rounded_border_shaded_focused" />
859		<button function="close" state="normal" draw_ops="close_focused" />
860		<button function="close" state="prelight" draw_ops="close_focused_prelight" />
861		<button function="close" state="pressed" draw_ops="close_focused_pressed" />
862		<button function="maximize" state="normal" draw_ops="maximize_focused" />
863		<button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" />
864		<button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" />
865		<button function="minimize" state="normal" draw_ops="minimize_focused" />
866		<button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" />
867		<button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" />
868		<button function="menu" state="normal" draw_ops="menu_focused" />
869		<button function="menu" state="prelight" draw_ops="menu_focused_prelight" />
870		<button function="menu" state="pressed" draw_ops="menu_focused_pressed" />
871		<button function="shade" state="normal"><draw_ops></draw_ops></button>
872		<button function="shade" state="prelight"><draw_ops></draw_ops></button>
873		<button function="shade" state="pressed"><draw_ops></draw_ops></button>
874		<button function="unshade" state="normal"><draw_ops></draw_ops></button>
875		<button function="unshade" state="prelight"><draw_ops></draw_ops></button>
876		<button function="unshade" state="pressed"><draw_ops></draw_ops></button>
877		<button function="above" state="normal"><draw_ops></draw_ops></button>
878		<button function="above" state="pressed"><draw_ops></draw_ops></button>
879		<button function="unabove" state="normal"><draw_ops></draw_ops></button>
880		<button function="unabove" state="pressed"><draw_ops></draw_ops></button>
881		<button function="stick" state="normal"><draw_ops></draw_ops></button>
882		<button function="stick" state="pressed"><draw_ops></draw_ops></button>
883		<button function="unstick" state="normal"><draw_ops></draw_ops></button>
884		<button function="unstick" state="pressed"><draw_ops></draw_ops></button>
885	</frame_style>
886
887	<frame_style name="modal_dialog_shaded_unfocused" geometry="nobuttons_shaded">
888		<piece position="entire_background" draw_ops="entire_background_unfocused" />
889		<piece position="titlebar" draw_ops="titlebar_fill_unfocused" />
890		<piece position="title" draw_ops="title_unfocused" />
891		<piece position="overlay" draw_ops="rounded_border_shaded_unfocused" />
892		<button function="close" state="normal" draw_ops="close_unfocused" />
893		<button function="close" state="prelight" draw_ops="close_unfocused_prelight" />
894		<button function="close" state="pressed" draw_ops="close_unfocused_pressed" />
895		<button function="maximize" state="normal" draw_ops="maximize_unfocused" />
896		<button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" />
897		<button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" />
898		<button function="minimize" state="normal" draw_ops="minimize_unfocused" />
899		<button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" />
900		<button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" />
901		<button function="menu" state="normal" draw_ops="menu_unfocused" />
902		<button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" />
903		<button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" />
904		<button function="shade" state="normal"><draw_ops></draw_ops></button>
905		<button function="shade" state="prelight"><draw_ops></draw_ops></button>
906		<button function="shade" state="pressed"><draw_ops></draw_ops></button>
907		<button function="unshade" state="normal"><draw_ops></draw_ops></button>
908		<button function="unshade" state="prelight"><draw_ops></draw_ops></button>
909		<button function="unshade" state="pressed"><draw_ops></draw_ops></button>
910		<button function="above" state="normal"><draw_ops></draw_ops></button>
911		<button function="above" state="pressed"><draw_ops></draw_ops></button>
912		<button function="unabove" state="normal"><draw_ops></draw_ops></button>
913		<button function="unabove" state="pressed"><draw_ops></draw_ops></button>
914		<button function="stick" state="normal"><draw_ops></draw_ops></button>
915		<button function="stick" state="pressed"><draw_ops></draw_ops></button>
916		<button function="unstick" state="normal"><draw_ops></draw_ops></button>
917		<button function="unstick" state="pressed"><draw_ops></draw_ops></button>
918	</frame_style>
919
920	<frame_style name="utility_focused" geometry="normal">
921		<piece position="entire_background" draw_ops="entire_background_focused" />
922		<piece position="titlebar" draw_ops="titlebar_fill_focused" />
923		<piece position="title" draw_ops="title_focused" />
924		<piece position="overlay" draw_ops="rounded_border_focused" />
925		<button function="close" state="normal" draw_ops="close_focused" />
926		<button function="close" state="prelight" draw_ops="close_focused_prelight" />
927		<button function="close" state="pressed" draw_ops="close_focused_pressed" />
928		<button function="maximize" state="normal" draw_ops="maximize_focused" />
929		<button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" />
930		<button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" />
931		<button function="minimize" state="normal" draw_ops="minimize_focused" />
932		<button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" />
933		<button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" />
934		<button function="menu" state="normal" draw_ops="menu_focused" />
935		<button function="menu" state="prelight" draw_ops="menu_focused_prelight" />
936		<button function="menu" state="pressed" draw_ops="menu_focused_pressed" />
937		<button function="shade" state="normal"><draw_ops></draw_ops></button>
938		<button function="shade" state="prelight"><draw_ops></draw_ops></button>
939		<button function="shade" state="pressed"><draw_ops></draw_ops></button>
940		<button function="unshade" state="normal"><draw_ops></draw_ops></button>
941		<button function="unshade" state="prelight"><draw_ops></draw_ops></button>
942		<button function="unshade" state="pressed"><draw_ops></draw_ops></button>
943		<button function="above" state="normal"><draw_ops></draw_ops></button>
944		<button function="above" state="pressed"><draw_ops></draw_ops></button>
945		<button function="unabove" state="normal"><draw_ops></draw_ops></button>
946		<button function="unabove" state="pressed"><draw_ops></draw_ops></button>
947		<button function="stick" state="normal"><draw_ops></draw_ops></button>
948		<button function="stick" state="pressed"><draw_ops></draw_ops></button>
949		<button function="unstick" state="normal"><draw_ops></draw_ops></button>
950		<button function="unstick" state="pressed"><draw_ops></draw_ops></button>
951	</frame_style>
952
953	<frame_style name="utility_unfocused" geometry="normal">
954		<piece position="entire_background" draw_ops="entire_background_unfocused" />
955		<piece position="titlebar" draw_ops="titlebar_fill_unfocused" />
956		<piece position="title" draw_ops="title_unfocused" />
957		<piece position="overlay" draw_ops="rounded_border_unfocused" />
958		<button function="close" state="normal" draw_ops="close_unfocused" />
959		<button function="close" state="prelight" draw_ops="close_unfocused_prelight" />
960		<button function="close" state="pressed" draw_ops="close_unfocused_pressed" />
961		<button function="maximize" state="normal" draw_ops="maximize_unfocused" />
962		<button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" />
963		<button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" />
964		<button function="minimize" state="normal" draw_ops="minimize_unfocused" />
965		<button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" />
966		<button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" />
967		<button function="menu" state="normal" draw_ops="menu_unfocused" />
968		<button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" />
969		<button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" />
970		<button function="shade" state="normal"><draw_ops></draw_ops></button>
971		<button function="shade" state="prelight"><draw_ops></draw_ops></button>
972		<button function="shade" state="pressed"><draw_ops></draw_ops></button>
973		<button function="unshade" state="normal"><draw_ops></draw_ops></button>
974		<button function="unshade" state="prelight"><draw_ops></draw_ops></button>
975		<button function="unshade" state="pressed"><draw_ops></draw_ops></button>
976		<button function="above" state="normal"><draw_ops></draw_ops></button>
977		<button function="above" state="pressed"><draw_ops></draw_ops></button>
978		<button function="unabove" state="normal"><draw_ops></draw_ops></button>
979		<button function="unabove" state="pressed"><draw_ops></draw_ops></button>
980		<button function="stick" state="normal"><draw_ops></draw_ops></button>
981		<button function="stick" state="pressed"><draw_ops></draw_ops></button>
982		<button function="unstick" state="normal"><draw_ops></draw_ops></button>
983		<button function="unstick" state="pressed"><draw_ops></draw_ops></button>
984	</frame_style>
985
986	<frame_style name="utility_shaded_focused" geometry="normal_shaded">
987		<piece position="entire_background" draw_ops="entire_background_focused" />
988		<piece position="titlebar" draw_ops="titlebar_fill_focused" />
989		<piece position="title" draw_ops="title_focused" />
990		<piece position="overlay" draw_ops="rounded_border_shaded_focused" />
991		<button function="close" state="normal" draw_ops="close_focused" />
992		<button function="close" state="prelight" draw_ops="close_focused_prelight" />
993		<button function="close" state="pressed" draw_ops="close_focused_pressed" />
994		<button function="maximize" state="normal" draw_ops="maximize_focused" />
995		<button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" />
996		<button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" />
997		<button function="minimize" state="normal" draw_ops="minimize_focused" />
998		<button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" />
999		<button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" />
1000		<button function="menu" state="normal" draw_ops="menu_focused" />
1001		<button function="menu" state="prelight" draw_ops="menu_focused_prelight" />
1002		<button function="menu" state="pressed" draw_ops="menu_focused_pressed" />
1003		<button function="shade" state="normal"><draw_ops></draw_ops></button>
1004		<button function="shade" state="prelight"><draw_ops></draw_ops></button>
1005		<button function="shade" state="pressed"><draw_ops></draw_ops></button>
1006		<button function="unshade" state="normal"><draw_ops></draw_ops></button>
1007		<button function="unshade" state="prelight"><draw_ops></draw_ops></button>
1008		<button function="unshade" state="pressed"><draw_ops></draw_ops></button>
1009		<button function="above" state="normal"><draw_ops></draw_ops></button>
1010		<button function="above" state="pressed"><draw_ops></draw_ops></button>
1011		<button function="unabove" state="normal"><draw_ops></draw_ops></button>
1012		<button function="unabove" state="pressed"><draw_ops></draw_ops></button>
1013		<button function="stick" state="normal"><draw_ops></draw_ops></button>
1014		<button function="stick" state="pressed"><draw_ops></draw_ops></button>
1015		<button function="unstick" state="normal"><draw_ops></draw_ops></button>
1016		<button function="unstick" state="pressed"><draw_ops></draw_ops></button>
1017	</frame_style>
1018
1019	<frame_style name="utility_shaded_unfocused" geometry="normal_shaded">
1020		<piece position="entire_background" draw_ops="entire_background_unfocused" />
1021		<piece position="titlebar" draw_ops="titlebar_fill_unfocused" />
1022		<piece position="title" draw_ops="title_unfocused" />
1023		<piece position="overlay" draw_ops="rounded_border_shaded_unfocused" />
1024		<button function="close" state="normal" draw_ops="close_unfocused" />
1025		<button function="close" state="prelight" draw_ops="close_unfocused_prelight" />
1026		<button function="close" state="pressed" draw_ops="close_unfocused_pressed" />
1027		<button function="maximize" state="normal" draw_ops="maximize_unfocused" />
1028		<button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" />
1029		<button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" />
1030		<button function="minimize" state="normal" draw_ops="minimize_unfocused" />
1031		<button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" />
1032		<button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" />
1033		<button function="menu" state="normal" draw_ops="menu_unfocused" />
1034		<button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" />
1035		<button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" />
1036		<button function="shade" state="normal"><draw_ops></draw_ops></button>
1037		<button function="shade" state="prelight"><draw_ops></draw_ops></button>
1038		<button function="shade" state="pressed"><draw_ops></draw_ops></button>
1039		<button function="unshade" state="normal"><draw_ops></draw_ops></button>
1040		<button function="unshade" state="prelight"><draw_ops></draw_ops></button>
1041		<button function="unshade" state="pressed"><draw_ops></draw_ops></button>
1042		<button function="above" state="normal"><draw_ops></draw_ops></button>
1043		<button function="above" state="pressed"><draw_ops></draw_ops></button>
1044		<button function="unabove" state="normal"><draw_ops></draw_ops></button>
1045		<button function="unabove" state="pressed"><draw_ops></draw_ops></button>
1046		<button function="stick" state="normal"><draw_ops></draw_ops></button>
1047		<button function="stick" state="pressed"><draw_ops></draw_ops></button>
1048		<button function="unstick" state="normal"><draw_ops></draw_ops></button>
1049		<button function="unstick" state="pressed"><draw_ops></draw_ops></button>
1050	</frame_style>
1051
1052	<frame_style name="border_focused" geometry="border">
1053		<piece position="entire_background" draw_ops="entire_background_focused" />
1054		<piece position="overlay" draw_ops="border_focused" />
1055		<button function="close" state="normal"><draw_ops></draw_ops></button>
1056		<button function="close" state="pressed"><draw_ops></draw_ops></button>
1057		<button function="maximize" state="normal"><draw_ops></draw_ops></button>
1058		<button function="maximize" state="pressed"><draw_ops></draw_ops></button>
1059		<button function="minimize" state="normal"><draw_ops></draw_ops></button>
1060		<button function="minimize" state="pressed"><draw_ops></draw_ops></button>
1061		<button function="menu" state="normal"><draw_ops></draw_ops></button>
1062		<button function="menu" state="pressed"><draw_ops></draw_ops></button>
1063		<button function="shade" state="normal"><draw_ops></draw_ops></button>
1064		<button function="shade" state="prelight"><draw_ops></draw_ops></button>
1065		<button function="shade" state="pressed"><draw_ops></draw_ops></button>
1066		<button function="unshade" state="normal"><draw_ops></draw_ops></button>
1067		<button function="unshade" state="prelight"><draw_ops></draw_ops></button>
1068		<button function="unshade" state="pressed"><draw_ops></draw_ops></button>
1069		<button function="above" state="normal"><draw_ops></draw_ops></button>
1070		<button function="above" state="pressed"><draw_ops></draw_ops></button>
1071		<button function="unabove" state="normal"><draw_ops></draw_ops></button>
1072		<button function="unabove" state="pressed"><draw_ops></draw_ops></button>
1073		<button function="stick" state="normal"><draw_ops></draw_ops></button>
1074		<button function="stick" state="pressed"><draw_ops></draw_ops></button>
1075		<button function="unstick" state="normal"><draw_ops></draw_ops></button>
1076		<button function="unstick" state="pressed"><draw_ops></draw_ops></button>
1077	</frame_style>
1078
1079	<frame_style name="border_unfocused" geometry="border">
1080		<piece position="entire_background" draw_ops="entire_background_unfocused" />
1081		<piece position="overlay" draw_ops="border_unfocused" />
1082		<button function="close" state="normal"><draw_ops></draw_ops></button>
1083		<button function="close" state="pressed"><draw_ops></draw_ops></button>
1084		<button function="maximize" state="normal"><draw_ops></draw_ops></button>
1085		<button function="maximize" state="pressed"><draw_ops></draw_ops></button>
1086		<button function="minimize" state="normal"><draw_ops></draw_ops></button>
1087		<button function="minimize" state="pressed"><draw_ops></draw_ops></button>
1088		<button function="menu" state="normal"><draw_ops></draw_ops></button>
1089		<button function="menu" state="pressed"><draw_ops></draw_ops></button>
1090		<button function="shade" state="normal"><draw_ops></draw_ops></button>
1091		<button function="shade" state="prelight"><draw_ops></draw_ops></button>
1092		<button function="shade" state="pressed"><draw_ops></draw_ops></button>
1093		<button function="unshade" state="normal"><draw_ops></draw_ops></button>
1094		<button function="unshade" state="prelight"><draw_ops></draw_ops></button>
1095		<button function="unshade" state="pressed"><draw_ops></draw_ops></button>
1096		<button function="above" state="normal"><draw_ops></draw_ops></button>
1097		<button function="above" state="pressed"><draw_ops></draw_ops></button>
1098		<button function="unabove" state="normal"><draw_ops></draw_ops></button>
1099		<button function="unabove" state="pressed"><draw_ops></draw_ops></button>
1100		<button function="stick" state="normal"><draw_ops></draw_ops></button>
1101		<button function="stick" state="pressed"><draw_ops></draw_ops></button>
1102		<button function="unstick" state="normal"><draw_ops></draw_ops></button>
1103		<button function="unstick" state="pressed"><draw_ops></draw_ops></button>
1104	</frame_style>
1105
1106	<frame_style name="borderless" geometry="borderless">
1107		<button function="close" state="normal"><draw_ops></draw_ops></button>
1108		<button function="close" state="pressed"><draw_ops></draw_ops></button>
1109		<button function="maximize" state="normal"><draw_ops></draw_ops></button>
1110		<button function="maximize" state="pressed"><draw_ops></draw_ops></button>
1111		<button function="minimize" state="normal"><draw_ops></draw_ops></button>
1112		<button function="minimize" state="pressed"><draw_ops></draw_ops></button>
1113		<button function="menu" state="normal"><draw_ops></draw_ops></button>
1114		<button function="menu" state="pressed"><draw_ops></draw_ops></button>
1115		<button function="shade" state="normal"><draw_ops></draw_ops></button>
1116		<button function="shade" state="prelight"><draw_ops></draw_ops></button>
1117		<button function="shade" state="pressed"><draw_ops></draw_ops></button>
1118		<button function="unshade" state="normal"><draw_ops></draw_ops></button>
1119		<button function="unshade" state="prelight"><draw_ops></draw_ops></button>
1120		<button function="unshade" state="pressed"><draw_ops></draw_ops></button>
1121		<button function="above" state="normal"><draw_ops></draw_ops></button>
1122		<button function="above" state="pressed"><draw_ops></draw_ops></button>
1123		<button function="unabove" state="normal"><draw_ops></draw_ops></button>
1124		<button function="unabove" state="pressed"><draw_ops></draw_ops></button>
1125		<button function="stick" state="normal"><draw_ops></draw_ops></button>
1126		<button function="stick" state="pressed"><draw_ops></draw_ops></button>
1127		<button function="unstick" state="normal"><draw_ops></draw_ops></button>
1128		<button function="unstick" state="pressed"><draw_ops></draw_ops></button>
1129	</frame_style>
1130
1131	<frame_style name="attached_focused" geometry="nobuttons">
1132		<piece position="entire_background" draw_ops="entire_background_focused" />
1133		<piece position="titlebar" draw_ops="titlebar_fill_focused" />
1134		<piece position="title" draw_ops="title_focused" />
1135		<piece position="overlay" draw_ops="rounded_border_focused" />
1136		<button function="close" state="normal"><draw_ops></draw_ops></button>
1137		<button function="close" state="pressed"><draw_ops></draw_ops></button>
1138		<button function="maximize" state="normal"><draw_ops></draw_ops></button>
1139		<button function="maximize" state="pressed"><draw_ops></draw_ops></button>
1140		<button function="minimize" state="normal"><draw_ops></draw_ops></button>
1141		<button function="minimize" state="pressed"><draw_ops></draw_ops></button>
1142		<button function="menu" state="normal"><draw_ops></draw_ops></button>
1143		<button function="menu" state="pressed"><draw_ops></draw_ops></button>
1144		<button function="shade" state="normal"><draw_ops></draw_ops></button>
1145		<button function="shade" state="prelight"><draw_ops></draw_ops></button>
1146		<button function="shade" state="pressed"><draw_ops></draw_ops></button>
1147		<button function="unshade" state="normal"><draw_ops></draw_ops></button>
1148		<button function="unshade" state="prelight"><draw_ops></draw_ops></button>
1149		<button function="unshade" state="pressed"><draw_ops></draw_ops></button>
1150		<button function="above" state="normal"><draw_ops></draw_ops></button>
1151		<button function="above" state="pressed"><draw_ops></draw_ops></button>
1152		<button function="unabove" state="normal"><draw_ops></draw_ops></button>
1153		<button function="unabove" state="pressed"><draw_ops></draw_ops></button>
1154		<button function="stick" state="normal"><draw_ops></draw_ops></button>
1155		<button function="stick" state="pressed"><draw_ops></draw_ops></button>
1156		<button function="unstick" state="normal"><draw_ops></draw_ops></button>
1157		<button function="unstick" state="pressed"><draw_ops></draw_ops></button>
1158	</frame_style>
1159
1160	<frame_style name="attached_unfocused" geometry="nobuttons">
1161		<piece position="entire_background" draw_ops="entire_background_unfocused" />
1162		<piece position="titlebar" draw_ops="titlebar_fill_unfocused" />
1163		<piece position="title" draw_ops="title_unfocused" />
1164		<piece position="overlay" draw_ops="rounded_border_unfocused" />
1165		<button function="close" state="normal"><draw_ops></draw_ops></button>
1166		<button function="close" state="pressed"><draw_ops></draw_ops></button>
1167		<button function="maximize" state="normal"><draw_ops></draw_ops></button>
1168		<button function="maximize" state="pressed"><draw_ops></draw_ops></button>
1169		<button function="minimize" state="normal"><draw_ops></draw_ops></button>
1170		<button function="minimize" state="pressed"><draw_ops></draw_ops></button>
1171		<button function="menu" state="normal"><draw_ops></draw_ops></button>
1172		<button function="menu" state="pressed"><draw_ops></draw_ops></button>
1173		<button function="shade" state="normal"><draw_ops></draw_ops></button>
1174		<button function="shade" state="prelight"><draw_ops></draw_ops></button>
1175		<button function="shade" state="pressed"><draw_ops></draw_ops></button>
1176		<button function="unshade" state="normal"><draw_ops></draw_ops></button>
1177		<button function="unshade" state="prelight"><draw_ops></draw_ops></button>
1178		<button function="unshade" state="pressed"><draw_ops></draw_ops></button>
1179		<button function="above" state="normal"><draw_ops></draw_ops></button>
1180		<button function="above" state="pressed"><draw_ops></draw_ops></button>
1181		<button function="unabove" state="normal"><draw_ops></draw_ops></button>
1182		<button function="unabove" state="pressed"><draw_ops></draw_ops></button>
1183		<button function="stick" state="normal"><draw_ops></draw_ops></button>
1184		<button function="stick" state="pressed"><draw_ops></draw_ops></button>
1185		<button function="unstick" state="normal"><draw_ops></draw_ops></button>
1186		<button function="unstick" state="pressed"><draw_ops></draw_ops></button>
1187	</frame_style>
1188
1189	<frame_style name="attached_shaded_focused" geometry="nobuttons_shaded">
1190		<piece position="entire_background" draw_ops="entire_background_focused" />
1191		<piece position="titlebar" draw_ops="titlebar_fill_focused" />
1192		<piece position="title" draw_ops="title_focused" />
1193		<piece position="overlay" draw_ops="rounded_border_shaded_focused" />
1194		<button function="close" state="normal"><draw_ops></draw_ops></button>
1195		<button function="close" state="pressed"><draw_ops></draw_ops></button>
1196		<button function="maximize" state="normal"><draw_ops></draw_ops></button>
1197		<button function="maximize" state="pressed"><draw_ops></draw_ops></button>
1198		<button function="minimize" state="normal"><draw_ops></draw_ops></button>
1199		<button function="minimize" state="pressed"><draw_ops></draw_ops></button>
1200		<button function="menu" state="normal"><draw_ops></draw_ops></button>
1201		<button function="menu" state="pressed"><draw_ops></draw_ops></button>
1202		<button function="shade" state="normal"><draw_ops></draw_ops></button>
1203		<button function="shade" state="prelight"><draw_ops></draw_ops></button>
1204		<button function="shade" state="pressed"><draw_ops></draw_ops></button>
1205		<button function="unshade" state="normal"><draw_ops></draw_ops></button>
1206		<button function="unshade" state="prelight"><draw_ops></draw_ops></button>
1207		<button function="unshade" state="pressed"><draw_ops></draw_ops></button>
1208		<button function="above" state="normal"><draw_ops></draw_ops></button>
1209		<button function="above" state="pressed"><draw_ops></draw_ops></button>
1210		<button function="unabove" state="normal"><draw_ops></draw_ops></button>
1211		<button function="unabove" state="pressed"><draw_ops></draw_ops></button>
1212		<button function="stick" state="normal"><draw_ops></draw_ops></button>
1213		<button function="stick" state="pressed"><draw_ops></draw_ops></button>
1214		<button function="unstick" state="normal"><draw_ops></draw_ops></button>
1215		<button function="unstick" state="pressed"><draw_ops></draw_ops></button>
1216	</frame_style>
1217
1218	<frame_style name="attached_shaded_unfocused" geometry="nobuttons_shaded">
1219		<piece position="entire_background" draw_ops="entire_background_unfocused" />
1220		<piece position="titlebar" draw_ops="titlebar_fill_unfocused" />
1221		<piece position="title" draw_ops="title_unfocused" />
1222		<piece position="overlay" draw_ops="rounded_border_shaded_unfocused" />
1223		<button function="close" state="normal"><draw_ops></draw_ops></button>
1224		<button function="close" state="pressed"><draw_ops></draw_ops></button>
1225		<button function="maximize" state="normal"><draw_ops></draw_ops></button>
1226		<button function="maximize" state="pressed"><draw_ops></draw_ops></button>
1227		<button function="minimize" state="normal"><draw_ops></draw_ops></button>
1228		<button function="minimize" state="pressed"><draw_ops></draw_ops></button>
1229		<button function="menu" state="normal"><draw_ops></draw_ops></button>
1230		<button function="menu" state="pressed"><draw_ops></draw_ops></button>
1231		<button function="shade" state="normal"><draw_ops></draw_ops></button>
1232		<button function="shade" state="prelight"><draw_ops></draw_ops></button>
1233		<button function="shade" state="pressed"><draw_ops></draw_ops></button>
1234		<button function="unshade" state="normal"><draw_ops></draw_ops></button>
1235		<button function="unshade" state="prelight"><draw_ops></draw_ops></button>
1236		<button function="unshade" state="pressed"><draw_ops></draw_ops></button>
1237		<button function="above" state="normal"><draw_ops></draw_ops></button>
1238		<button function="above" state="pressed"><draw_ops></draw_ops></button>
1239		<button function="unabove" state="normal"><draw_ops></draw_ops></button>
1240		<button function="unabove" state="pressed"><draw_ops></draw_ops></button>
1241		<button function="stick" state="normal"><draw_ops></draw_ops></button>
1242		<button function="stick" state="pressed"><draw_ops></draw_ops></button>
1243		<button function="unstick" state="normal"><draw_ops></draw_ops></button>
1244		<button function="unstick" state="pressed"><draw_ops></draw_ops></button>
1245	</frame_style>
1246
1247	<frame_style name="tiled_left_focused" geometry="tiled_left_active">
1248		<piece position="entire_background" draw_ops="entire_background_focused" />
1249		<piece position="titlebar" draw_ops="titlebar_tiled_focused" />
1250		<piece position="title" draw_ops="title_focused" />
1251		<piece position="overlay" draw_ops="tiled_left_border_focused" />
1252		<button function="close" state="normal" draw_ops="close_focused" />
1253		<button function="close" state="prelight" draw_ops="close_focused_prelight" />
1254		<button function="close" state="pressed" draw_ops="close_focused_pressed" />
1255		<button function="maximize" state="normal" draw_ops="maximize_focused" />
1256		<button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" />
1257		<button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" />
1258		<button function="minimize" state="normal" draw_ops="minimize_focused" />
1259		<button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" />
1260		<button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" />
1261		<button function="menu" state="normal" draw_ops="menu_focused" />
1262		<button function="menu" state="prelight" draw_ops="menu_focused_prelight" />
1263		<button function="menu" state="pressed" draw_ops="menu_focused_pressed" />
1264		<button function="shade" state="normal"><draw_ops></draw_ops></button>
1265		<button function="shade" state="prelight"><draw_ops></draw_ops></button>
1266		<button function="shade" state="pressed"><draw_ops></draw_ops></button>
1267		<button function="unshade" state="normal"><draw_ops></draw_ops></button>
1268		<button function="unshade" state="prelight"><draw_ops></draw_ops></button>
1269		<button function="unshade" state="pressed"><draw_ops></draw_ops></button>
1270		<button function="above" state="normal"><draw_ops></draw_ops></button>
1271		<button function="above" state="pressed"><draw_ops></draw_ops></button>
1272		<button function="unabove" state="normal"><draw_ops></draw_ops></button>
1273		<button function="unabove" state="pressed"><draw_ops></draw_ops></button>
1274		<button function="stick" state="normal"><draw_ops></draw_ops></button>
1275		<button function="stick" state="pressed"><draw_ops></draw_ops></button>
1276		<button function="unstick" state="normal"><draw_ops></draw_ops></button>
1277		<button function="unstick" state="pressed"><draw_ops></draw_ops></button>
1278	</frame_style>
1279
1280	<frame_style name="tiled_left_unfocused" geometry="tiled_left_inactive">
1281		<piece position="entire_background" draw_ops="entire_background_unfocused" />
1282		<piece position="titlebar" draw_ops="titlebar_tiled_unfocused" />
1283		<piece position="title" draw_ops="title_unfocused" />
1284		<piece position="overlay" draw_ops="tiled_left_border_unfocused" />
1285		<button function="close" state="normal" draw_ops="close_unfocused" />
1286		<button function="close" state="prelight" draw_ops="close_unfocused_prelight" />
1287		<button function="close" state="pressed" draw_ops="close_unfocused_pressed" />
1288		<button function="maximize" state="normal" draw_ops="maximize_unfocused" />
1289		<button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" />
1290		<button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" />
1291		<button function="minimize" state="normal" draw_ops="minimize_unfocused" />
1292		<button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" />
1293		<button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" />
1294		<button function="menu" state="normal" draw_ops="menu_unfocused" />
1295		<button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" />
1296		<button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" />
1297		<button function="shade" state="normal"><draw_ops></draw_ops></button>
1298		<button function="shade" state="prelight"><draw_ops></draw_ops></button>
1299		<button function="shade" state="pressed"><draw_ops></draw_ops></button>
1300		<button function="unshade" state="normal"><draw_ops></draw_ops></button>
1301		<button function="unshade" state="prelight"><draw_ops></draw_ops></button>
1302		<button function="unshade" state="pressed"><draw_ops></draw_ops></button>
1303		<button function="above" state="normal"><draw_ops></draw_ops></button>
1304		<button function="above" state="pressed"><draw_ops></draw_ops></button>
1305		<button function="unabove" state="normal"><draw_ops></draw_ops></button>
1306		<button function="unabove" state="pressed"><draw_ops></draw_ops></button>
1307		<button function="stick" state="normal"><draw_ops></draw_ops></button>
1308		<button function="stick" state="pressed"><draw_ops></draw_ops></button>
1309		<button function="unstick" state="normal"><draw_ops></draw_ops></button>
1310		<button function="unstick" state="pressed"><draw_ops></draw_ops></button>
1311	</frame_style>
1312
1313	<frame_style name="tiled_right_focused" geometry="tiled_right_active">
1314		<piece position="entire_background" draw_ops="entire_background_focused" />
1315		<piece position="titlebar" draw_ops="titlebar_tiled_focused" />
1316		<piece position="title" draw_ops="title_focused" />
1317		<piece position="overlay" draw_ops="tiled_right_border_focused" />
1318		<button function="close" state="normal" draw_ops="close_focused" />
1319		<button function="close" state="prelight" draw_ops="close_focused_prelight" />
1320		<button function="close" state="pressed" draw_ops="close_focused_pressed" />
1321		<button function="maximize" state="normal" draw_ops="maximize_focused" />
1322		<button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" />
1323		<button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" />
1324		<button function="minimize" state="normal" draw_ops="minimize_focused" />
1325		<button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" />
1326		<button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" />
1327		<button function="menu" state="normal" draw_ops="menu_focused" />
1328		<button function="menu" state="prelight" draw_ops="menu_focused_prelight" />
1329		<button function="menu" state="pressed" draw_ops="menu_focused_pressed" />
1330		<button function="shade" state="normal"><draw_ops></draw_ops></button>
1331		<button function="shade" state="prelight"><draw_ops></draw_ops></button>
1332		<button function="shade" state="pressed"><draw_ops></draw_ops></button>
1333		<button function="unshade" state="normal"><draw_ops></draw_ops></button>
1334		<button function="unshade" state="prelight"><draw_ops></draw_ops></button>
1335		<button function="unshade" state="pressed"><draw_ops></draw_ops></button>
1336		<button function="above" state="normal"><draw_ops></draw_ops></button>
1337		<button function="above" state="pressed"><draw_ops></draw_ops></button>
1338		<button function="unabove" state="normal"><draw_ops></draw_ops></button>
1339		<button function="unabove" state="pressed"><draw_ops></draw_ops></button>
1340		<button function="stick" state="normal"><draw_ops></draw_ops></button>
1341		<button function="stick" state="pressed"><draw_ops></draw_ops></button>
1342		<button function="unstick" state="normal"><draw_ops></draw_ops></button>
1343		<button function="unstick" state="pressed"><draw_ops></draw_ops></button>
1344	</frame_style>
1345
1346	<frame_style name="tiled_right_unfocused" geometry="tiled_right_inactive">
1347		<piece position="entire_background" draw_ops="entire_background_unfocused" />
1348		<piece position="titlebar" draw_ops="titlebar_tiled_unfocused" />
1349		<piece position="title" draw_ops="title_unfocused" />
1350		<piece position="overlay" draw_ops="tiled_right_border_unfocused" />
1351		<button function="close" state="normal" draw_ops="close_unfocused" />
1352		<button function="close" state="prelight" draw_ops="close_unfocused_prelight" />
1353		<button function="close" state="pressed" draw_ops="close_unfocused_pressed" />
1354		<button function="maximize" state="normal" draw_ops="maximize_unfocused" />
1355		<button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight" />
1356		<button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed" />
1357		<button function="minimize" state="normal" draw_ops="minimize_unfocused" />
1358		<button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight" />
1359		<button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed" />
1360		<button function="menu" state="normal" draw_ops="menu_unfocused" />
1361		<button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" />
1362		<button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" />
1363		<button function="shade" state="normal"><draw_ops></draw_ops></button>
1364		<button function="shade" state="prelight"><draw_ops></draw_ops></button>
1365		<button function="shade" state="pressed"><draw_ops></draw_ops></button>
1366		<button function="unshade" state="normal"><draw_ops></draw_ops></button>
1367		<button function="unshade" state="prelight"><draw_ops></draw_ops></button>
1368		<button function="unshade" state="pressed"><draw_ops></draw_ops></button>
1369		<button function="above" state="normal"><draw_ops></draw_ops></button>
1370		<button function="above" state="pressed"><draw_ops></draw_ops></button>
1371		<button function="unabove" state="normal"><draw_ops></draw_ops></button>
1372		<button function="unabove" state="pressed"><draw_ops></draw_ops></button>
1373		<button function="stick" state="normal"><draw_ops></draw_ops></button>
1374		<button function="stick" state="pressed"><draw_ops></draw_ops></button>
1375		<button function="unstick" state="normal"><draw_ops></draw_ops></button>
1376		<button function="unstick" state="pressed"><draw_ops></draw_ops></button>
1377	</frame_style>
1378
1379	<!-- placeholder for unimplementated styles-->
1380	<frame_style name="blank" geometry="normal">
1381		<button function="close" state="normal"><draw_ops></draw_ops></button>
1382		<button function="close" state="pressed"><draw_ops></draw_ops></button>
1383		<button function="maximize" state="normal"><draw_ops></draw_ops></button>
1384		<button function="maximize" state="pressed"><draw_ops></draw_ops></button>
1385		<button function="minimize" state="normal"><draw_ops></draw_ops></button>
1386		<button function="minimize" state="pressed"><draw_ops></draw_ops></button>
1387		<button function="menu" state="normal"><draw_ops></draw_ops></button>
1388		<button function="menu" state="pressed"><draw_ops></draw_ops></button>
1389		<button function="shade" state="normal"><draw_ops></draw_ops></button>
1390		<button function="shade" state="prelight"><draw_ops></draw_ops></button>
1391		<button function="shade" state="pressed"><draw_ops></draw_ops></button>
1392		<button function="unshade" state="normal"><draw_ops></draw_ops></button>
1393		<button function="unshade" state="prelight"><draw_ops></draw_ops></button>
1394		<button function="unshade" state="pressed"><draw_ops></draw_ops></button>
1395		<button function="above" state="normal"><draw_ops></draw_ops></button>
1396		<button function="above" state="pressed"><draw_ops></draw_ops></button>
1397		<button function="unabove" state="normal"><draw_ops></draw_ops></button>
1398		<button function="unabove" state="pressed"><draw_ops></draw_ops></button>
1399		<button function="stick" state="normal"><draw_ops></draw_ops></button>
1400		<button function="stick" state="pressed"><draw_ops></draw_ops></button>
1401		<button function="unstick" state="normal"><draw_ops></draw_ops></button>
1402		<button function="unstick" state="pressed"><draw_ops></draw_ops></button>
1403	</frame_style>
1404
1405	<!-- FRAME STYLE SETS -->
1406	<frame_style_set name="normal_style_set">
1407		<frame focus="yes" state="normal" resize="both" style="normal_focused" />
1408		<frame focus="no" state="normal" resize="both" style="normal_unfocused" />
1409		<frame focus="yes" state="maximized" style="normal_max_focused" />
1410		<frame focus="no" state="maximized" style="normal_max_unfocused" />
1411		<frame focus="yes" state="tiled_left" style="tiled_left_focused" />
1412		<frame focus="no" state="tiled_left" style="tiled_left_unfocused" />
1413		<frame focus="yes" state="tiled_right" style="tiled_right_focused" />
1414		<frame focus="no" state="tiled_right" style="tiled_right_unfocused" />
1415		<frame focus="yes" state="shaded" style="normal_shaded_focused" />
1416		<frame focus="no" state="shaded" style="normal_shaded_unfocused" />
1417		<frame focus="yes" state="maximized_and_shaded" style="normal_max_shaded_focused" />
1418		<frame focus="no" state="maximized_and_shaded" style="normal_max_shaded_unfocused" />
1419	</frame_style_set>
1420
1421	<frame_style_set name="dialog_style_set">
1422		<frame focus="yes" state="normal" resize="both" style="dialog_focused" />
1423		<frame focus="no" state="normal" resize="both" style="dialog_unfocused" />
1424		<frame focus="yes" state="maximized" style="blank" />
1425		<frame focus="no" state="maximized" style="blank" />
1426		<frame focus="yes" state="shaded" style="dialog_shaded_focused" />
1427		<frame focus="no" state="shaded" style="dialog_shaded_unfocused" />
1428		<frame focus="yes" state="maximized_and_shaded" style="blank" />
1429		<frame focus="no" state="maximized_and_shaded" style="blank" />
1430	</frame_style_set>
1431
1432	<frame_style_set name="modal_dialog_style_set">
1433		<frame focus="yes" state="normal" resize="both" style="modal_dialog_focused" />
1434		<frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused" />
1435		<frame focus="yes" state="maximized" style="blank" />
1436		<frame focus="no" state="maximized" style="blank" />
1437		<frame focus="yes" state="shaded" style="modal_dialog_shaded_focused" />
1438		<frame focus="no" state="shaded" style="modal_dialog_shaded_unfocused" />
1439		<frame focus="yes" state="maximized_and_shaded" style="blank" />
1440		<frame focus="no" state="maximized_and_shaded" style="blank" />
1441	</frame_style_set>
1442
1443	<frame_style_set name="utility_style_set">
1444		<frame focus="yes" state="normal" resize="both" style="utility_focused" />
1445		<frame focus="no" state="normal" resize="both" style="utility_unfocused" />
1446		<frame focus="yes" state="maximized" style="blank" />
1447		<frame focus="no" state="maximized" style="blank" />
1448		<frame focus="yes" state="shaded" style="utility_shaded_focused" />
1449		<frame focus="no" state="shaded" style="utility_shaded_unfocused" />
1450		<frame focus="yes" state="maximized_and_shaded" style="blank" />
1451		<frame focus="no" state="maximized_and_shaded" style="blank" />
1452	</frame_style_set>
1453
1454	<frame_style_set name="border_style_set">
1455		<frame focus="yes" state="normal" resize="both" style="border_focused" />
1456		<frame focus="no" state="normal" resize="both" style="border_unfocused" />
1457		<frame focus="yes" state="maximized" style="borderless" />
1458		<frame focus="no" state="maximized" style="borderless" />
1459		<frame focus="yes" state="shaded" style="blank" />
1460		<frame focus="no" state="shaded" style="blank" />
1461		<frame focus="yes" state="maximized_and_shaded" style="blank" />
1462		<frame focus="no" state="maximized_and_shaded" style="blank" />
1463	</frame_style_set>
1464
1465	<!-- WINDOWS -->
1466	<window type="normal" style_set="normal_style_set" />
1467	<window type="dialog" style_set="dialog_style_set" />
1468	<window type="modal_dialog" style_set="modal_dialog_style_set" />
1469	<window type="menu" style_set="utility_style_set" />
1470	<window type="utility" style_set="utility_style_set" />
1471	<window type="border" style_set="border_style_set" />
1472</metacity_theme>
1473