~vanvugt/compiz-animation-plugin/fix-930192

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
<compiz>
  <!-- animation metadata -->
  <plugin name="animation" useBcop="true">
    <_short>Animations</_short>
    <_long>Use various animations as window effects</_long>
    <feature>windowanimations</feature>
    <category>Effects</category>
    <deps>
      <requirement>
	<plugin>composite</plugin>
	<plugin>opengl</plugin>
	<plugin>regex</plugin>
      </requirement>
      <relation type="after">
	<plugin>decor</plugin>
	<plugin>composite</plugin>
	<plugin>opengl</plugin>
	<plugin>regex</plugin>
      </relation>
      <relation type="before">
	<plugin>fade</plugin>
      </relation>
    </deps>

    <options>

      <group>
	<_short>Open Animation</_short>

	<subgroup>
	  <_short>Animation Selection</_short>
	  <option name="open_effects" type="list">
	    <_short>Open Effect</_short>
	    <_long>The animation effect shown when creating a window.</_long>
	    <type>string</type>
	    <extensible/>
	    <sort start="2"/>
	    <default>
	      <value>animation:Zoom</value>
	      <value>animation:Fade</value>
	      <value>animation:Fade</value>
	    </default>
	  </option>
	  <option name="open_durations" type="list">
	    <_short>Duration</_short>
	    <_long>Animation duration in milliseconds for open effect.</_long>
	    <type>int</type>
	    <min>50</min>
	    <max>4000</max>
	    <default>
	      <value>200</value>
	      <value>150</value>
	      <value>150</value>
	    </default>
	  </option>
	  <option name="open_matches" type="list">
	    <_short>Window Match</_short>
	    <_long>The windows that will be animated.</_long>
	    <type>match</type>
	    <default>
	      <value>(type=Normal | Dialog | ModalDialog | Unknown) &amp; !(name=gnome-screensaver)</value>
	      <value>(type=Menu | PopupMenu | DropdownMenu | Combo)</value>
	      <value>(type=Tooltip | Notification | Utility) &amp; !(name=compiz) &amp; !(title=notify-osd)</value>
	    </default>
	  </option>
	  <option name="open_options" type="list">
	    <_short>Options</_short>
	    <_long>Comma separated list of option value assignments to override effect settings, e.g.: fire_color=#0080ffff, fire_particles=700, fire_smoke=1</_long>
	    <type>string</type>
	    <default>
	      <value></value>
	      <value></value>
	      <value></value>
	    </default>
	  </option>
	</subgroup>

	<subgroup>
	  <_short>Random Effects</_short>
	  <option name="open_random_effects" type="list">
	    <_short>Pool</_short>
	    <_long>Pool of effects to be chosen from if Random effect is selected. Click reset to use all effects.</_long>
	    <type>string</type>
	    <extensible/>
	    <sort start="2"/>
	    <default>
	    </default>
	  </option>
	</subgroup>

      </group>

      <group>
	<_short>Close Animation</_short>

	<subgroup>
	  <_short>Animation Selection</_short>
	  <option name="close_effects" type="list">
	    <_short>Close Effect</_short>
	    <_long>The animation effect shown when closing a window.</_long>
	    <type>string</type>
	    <extensible/>
	    <sort start="2"/>
	    <default>
	      <value>animation:Zoom</value>
	      <value>animation:Fade</value>
	      <value>animation:Fade</value>
	    </default>
	  </option>
	  <option name="close_durations" type="list">
	    <_short>Duration</_short>
	    <_long>Animation duration in milliseconds for close effect.</_long>
	    <type>int</type>
	    <min>50</min>
	    <max>4000</max>
	    <default>
	      <value>200</value>
	      <value>150</value>
	      <value>150</value>
	    </default>
	  </option>
	  <option name="close_matches" type="list">
	    <_short>Window Match</_short>
	    <_long>The windows that will be animated.</_long>
	    <type>match</type>
	    <default>
	      <value>(type=Normal | Dialog | ModalDialog | Unknown) &amp; !(name=gnome-screensaver)</value>
	      <value>(type=Menu | PopupMenu | DropdownMenu | Combo)</value>
	      <value>(type=Tooltip | Notification | Utility) &amp; !(name=compiz) &amp; !(title=notify-osd)</value>
	    </default>
	  </option>
	  <option name="close_options" type="list">
	    <_short>Options</_short>
	    <_long>Comma separated list of option value assignments to override effect settings, e.g.: fire_color=#0080ffff, fire_particles=700, fire_smoke=1</_long>
	    <type>string</type>
	    <default>
	      <value></value>
	      <value></value>
	      <value></value>
	    </default>
	  </option>
	</subgroup>

	<subgroup>
	  <_short>Random Effects</_short>
	  <option name="close_random_effects" type="list">
	    <_short>Pool</_short>
	    <_long>Pool of effects to be chosen from if Random effect is selected. Click reset to use all effects.</_long>
	    <type>string</type>
	    <extensible/>
	    <sort start="2"/>
	    <default>
	    </default>
	  </option>
	</subgroup>

      </group>

      <group>
	<_short>Minimize Animation</_short>

	<subgroup>
	  <_short>Animation Selection</_short>
	  <option name="minimize_effects" type="list">
	    <_short>Minimize Effect</_short>
	    <_long>The animation effect shown when minimizing a window.</_long>
	    <type>string</type>
	    <extensible/>
	    <sort start="2"/>
	    <default>
	      <value>animation:Magic Lamp</value>
	    </default>
	  </option>
	  <option name="minimize_durations" type="list">
	    <_short>Duration</_short>
	    <_long>Animation duration in milliseconds for minimize effect.</_long>
	    <type>int</type>
	    <min>50</min>
	    <max>4000</max>
	    <default>
	      <value>300</value>
	    </default>
	  </option>
	  <option name="minimize_matches" type="list">
	    <_short>Window Match</_short>
	    <_long>The windows that will be animated.</_long>
	    <type>match</type>
	    <default>
	      <value>(type=Normal | Dialog | ModalDialog | Unknown)</value>
	    </default>
	  </option>
	  <option name="minimize_options" type="list">
	    <_short>Options</_short>
	    <_long>Comma separated list of option value assignments to override effect settings, e.g.: fire_color=#0080ffff, fire_particles=700, fire_smoke=1</_long>
	    <type>string</type>
	    <default>
	      <value></value>
	    </default>
	  </option>
	</subgroup>

	<subgroup>
	  <_short>Random Effects</_short>
	  <option name="minimize_random_effects" type="list">
	    <_short>Pool</_short>
	    <_long>Pool of effects to be chosen from if Random effect is selected. Click reset to use all effects.</_long>
	    <type>string</type>
	    <extensible/>
	    <sort start="2"/>
	    <default>
	    </default>
	  </option>
	</subgroup>

      </group>

      <group>
	<_short>Shade Animation</_short>

	<subgroup>
	  <_short>Animation Selection</_short>
	  <option name="shade_effects" type="list">
	    <_short>Shade Effect</_short>
	    <_long>The animation effect shown when shading a window.</_long>
	    <type>string</type>
	    <extensible/>
	    <sort start="2"/>
	    <default>
	      <value>animation:Roll Up</value>
	    </default>
	  </option>
	  <option name="shade_durations" type="list">
	    <_short>Duration</_short>
	    <_long>Animation duration in milliseconds for shade effect.</_long>
	    <type>int</type>
	    <min>50</min>
	    <max>4000</max>
	    <default>
	      <value>300</value>
	    </default>
	  </option>
	  <option name="shade_matches" type="list">
	    <_short>Window Match</_short>
	    <_long>Window that should animate with this effect when shaded.</_long>
	    <type>match</type>
	    <default>
	      <value>(type=Normal | Dialog | ModalDialog | Utility | Unknown)</value>
	    </default>
	  </option>
	  <option name="shade_options" type="list">
	    <_short>Options</_short>
	    <_long>Comma separated list of option value assignments to override effect settings, e.g.: fire_color=#0080ffff, fire_particles=700, fire_smoke=1</_long>
	    <type>string</type>
	    <default>
	      <value></value>
	    </default>
	  </option>
	</subgroup>

	<subgroup>
	  <_short>Random Effects</_short>
	  <option name="shade_random_effects" type="list">
	    <_short>Pool</_short>
	    <_long>Pool of effects to be chosen from if Random effect is selected. Click reset to use all effects.</_long>
	    <type>string</type>
	    <extensible/>
	    <sort start="2"/>
	    <default>
	    </default>
	  </option>
	</subgroup>

      </group>

      <group>
	<_short>Focus Animation</_short>
	<subgroup>
	  <_short>Animation Selection</_short>
	  <option name="focus_effects" type="list">
	    <_short>Focus Effect</_short>
	    <_long>The animation effect shown when focusing a window.</_long>
	    <type>string</type>
	    <extensible/>
	    <sort start="1"/>
	    <default>
	      <value>animation:None</value>
	    </default>
	  </option>
	  <option name="focus_durations" type="list">
	    <_short>Duration</_short>
	    <_long>Animation duration in milliseconds for focus effect.</_long>
	    <type>int</type>
	    <min>50</min>
	    <max>4000</max>
	    <default>
	      <value>300</value>
	    </default>
	  </option>
	  <option name="focus_matches" type="list">
	    <_short>Window Match</_short>
	    <_long>Window that should animate with this effect when focused.</_long>
	    <type>match</type>
	    <default>
	      <value>(type=Normal | Dialog | ModalDialog | Utility | Unknown) &amp; !(name=compiz)</value>
	    </default>
	  </option>
	  <option name="focus_options" type="list">
	    <_short>Options</_short>
	    <_long>Comma separated list of option value assignments to override effect settings, e.g.: fire_color=#0080ffff, fire_particles=700, fire_smoke=1</_long>
	    <type>string</type>
	    <default>
	      <value></value>
	    </default>
	  </option>
        </subgroup>
      </group>

      <group>
	<_short>Effect Settings</_short>
	<extensible/>

	<option name="all_random" type="bool">
	  <_short>Random Animations For All Events</_short>
	  <_long>All effects are chosen randomly, ignoring the selected effect. If None is selected for an event, that event won't be animated.</_long>
	  <default>false</default>
	</option>
	<option name="time_step" type="int">
	  <_short>Animation Time Step</_short>
	  <_long>The amount of time in milliseconds between each render of the animation. The higher the number, the jerkier the movements become.</_long>
	  <default>10</default>
	  <min>1</min>
	  <max>400</max>
	</option>

	<subgroup>
	  <_short>Curved Fold</_short>
	  <option name="curved_fold_amp_mult" type="float">
	    <_short>Amplitude Multiplier</_short>
	    <_long>Fold amplitude (size) is multiplied by this number. Negative values fold outward.</_long>
	    <default>1.0</default>
	    <min>-1.5</min>
	    <max>2</max>
	    <precision>0.05</precision>
	  </option>
	  <option name="curved_fold_zoom_to_taskbar" type="bool">
	    <_short>Zoom to TaskBar on Minimize</_short>
	    <_long>Whether the window should zoom to taskbar when minimized with Curved Fold effect.</_long>
	    <default>true</default>
	  </option>
	</subgroup>

	<subgroup>
	  <_short>Dodge</_short>
	  <option name="dodge_mode" type="int">
	    <_short>Mode</_short>
	    <_long>Fixed Clicked Window: The window that is clicked on will stay fixed. All Moving: The clicked window will do a dodging action as well.</_long>
	    <default>1</default>
	    <min>0</min>
	    <max>1</max>
	    <desc>
	      <value>0</value>
	      <_name>Fixed Clicked Window</_name>
	    </desc>
	    <desc>
	      <value>1</value>
	      <_name>All Moving</_name>
	    </desc>
	  </option>
	  <option name="dodge_gap_ratio" type="float">
	    <_short>Gap Ratio</_short>
	    <_long>Ratio of gaps between dodge start times to focus duration.</_long>
	    <default>0.5</default>
	    <min>0</min>
	    <max>1</max>
	    <precision>0.01</precision>
	  </option>
	</subgroup>

	<subgroup>
	  <_short>Dream</_short>
	  <option name="dream_zoom_to_taskbar" type="bool">
	    <_short>Zoom to TaskBar on Minimize</_short>
	    <_long>Whether the window should zoom to taskbar when minimized with Dream effect.</_long>
	    <default>true</default>
	  </option>
	</subgroup>

	<subgroup>
	  <_short>Glide 1</_short>
	  <option name="glide1_away_position" type="float">
	    <_short>Away Position</_short>
	    <_long>Closeness of window to camera at the end of the animation (1.0: Close to camera, -2.0: Away from camera).</_long>
	    <default>1</default>
	    <min>-2</min>
	    <max>1</max>
	    <precision>0.05</precision>
	  </option>
	  <option name="glide1_away_angle" type="float">
	    <_short>Away Angle</_short>
	    <_long>Angle of window at the end of the animation.</_long>
	    <default>0</default>
	    <min>-540</min>
	    <max>540</max>
	    <precision>5</precision>
	  </option>
	  <option name="glide1_zoom_to_taskbar" type="bool">
	    <_short>Zoom to TaskBar on Minimize</_short>
	    <_long>Whether the window should zoom to taskbar when minimized with Glide 1 effect.</_long>
	    <default>false</default>
	  </option>
	</subgroup>

	<subgroup>
	  <_short>Glide 2</_short>
	  <option name="glide2_away_position" type="float">
	    <_short>Away Position</_short>
	    <_long>Closeness of window to camera at the end of the animation (1.0: Close to camera, -2.0: Away from camera).</_long>
	    <default>-0.4</default>
	    <min>-2</min>
	    <max>1</max>
	    <precision>0.05</precision>
	  </option>
	  <option name="glide2_away_angle" type="float">
	    <_short>Away Angle</_short>
	    <_long>Angle of window at the end of the animation.</_long>
	    <default>-45</default>
	    <min>-540</min>
	    <max>540</max>
	    <precision>5</precision>
	  </option>
	  <option name="glide2_zoom_to_taskbar" type="bool">
	    <_short>Zoom to TaskBar on Minimize</_short>
	    <_long>Whether the window should zoom to taskbar when minimized with Glide 2 effect.</_long>
	    <default>true</default>
	  </option>
	</subgroup>

	<subgroup>
	  <_short>Horizontal Folds</_short>
	  <option name="horizontal_folds_amp_mult" type="float">
	    <_short>Amplitude Multiplier</_short>
	    <_long>Fold amplitude (size) is multiplied by this number. Negative values fold outward.</_long>
	    <default>1.0</default>
	    <min>-1</min>
	    <max>3</max>
	    <precision>0.05</precision>
	  </option>
	  <option name="horizontal_folds_num_folds" type="int">
	    <_short>Number of Horizontal Folds</_short>
	    <_long>The number of horizontal folds that occur in the Horizontal Fold animation.</_long>
	    <default>3</default>
	    <min>1</min>
	    <max>50</max>
	  </option>
	  <option name="horizontal_folds_zoom_to_taskbar" type="bool">
	    <_short>Zoom to TaskBar on Minimize</_short>
	    <_long>Whether the window should zoom to taskbar when minimized with Horizontal Folds effect.</_long>
	    <default>true</default>
	  </option>
	</subgroup>

	<subgroup>
	  <_short>Magic Lamp</_short>
	  <option name="magic_lamp_moving_end" type="bool">
	    <_short>Open/Close Moving End</_short>
	    <_long>On open/close, move magic lamp ending point with the mouse pointer.</_long>
	    <default>true</default>
	  </option>
	  <option name="magic_lamp_grid_res" type="int">
	    <_short>Grid Y Resolution</_short>
	    <_long>Vertex grid resolution for Magic Lamp (Y dimension only). This is the number of points used to define the curves. The higher the number, the smoother the curves. However there will be a loss of performance (CPU usage increases).</_long>
	    <default>100</default>
	    <min>2</min>
	    <max>200</max>
	  </option>
	  <option name="magic_lamp_open_start_width" type="int">
	    <_short>Open Start Width</_short>
	    <_long>Starting width of open effect and ending width of close effect for Magic Lamp.</_long>
	    <default>30</default>
	    <min>0</min>
	    <max>500</max>
	  </option>
	</subgroup>

	<subgroup>
	  <_short>Magic Lamp Wavy</_short>
	  <option name="magic_lamp_wavy_moving_end" type="bool">
	    <_short>Open/Close Moving End</_short>
	    <_long>On open/close, move magic lamp ending point with the mouse pointer.</_long>
	    <default>true</default>
	  </option>
	  <option name="magic_lamp_wavy_grid_res" type="int">
	    <_short>Grid Y Resolution</_short>
	    <_long>Vertex grid resolution for Magic Lamp Wavy (Y dimension only). This is the number of points used to define the curves. The higher the number, the smoother the curves. However there will be a loss of performance (CPU usage increases).</_long>
	    <default>100</default>
	    <min>4</min>
	    <max>200</max>
	  </option>
	  <option name="magic_lamp_wavy_max_waves" type="int">
	    <_short>Max Waves</_short>
	    <_long>The maximum number of waves for Magic Lamp Wavy.</_long>
	    <default>3</default>
	    <min>1</min>
	    <max>20</max>
	  </option>
	  <option name="magic_lamp_wavy_amp_min" type="float">
	    <_short>Min Wave Amplitude</_short>
	    <_long>The minimum wave amplitude (size of the waves) Magic Lamp Wavy will have.</_long>
	    <default>200</default>
	    <min>200</min>
	    <max>2000</max>
	    <precision>5</precision>
	  </option>
	  <option name="magic_lamp_wavy_amp_max" type="float">
	    <_short>Max Wave Amplitude</_short>
	    <_long>The maximum wave amplitude (size of the waves) Magic Lamp Wavy will have.</_long>
	    <default>300</default>
	    <min>200</min>
	    <max>2000</max>
	    <precision>5</precision>
	  </option>
	  <option name="magic_lamp_wavy_open_start_width" type="int">
	    <_short>Open Start Width</_short>
	    <_long>Starting width of open effect and ending width of close effect for Magic Lamp Wavy.</_long>
	    <default>30</default>
	    <min>0</min>
	    <max>500</max>
	  </option>
	</subgroup>

	<subgroup>
	  <_short>Roll Up</_short>
	  <option name="rollup_fixed_interior" type="bool">
	    <_short>Fixed Interior</_short>
	    <_long>Fixed window interior during the Rollup animation.</_long>
	    <default>false</default>
	  </option>
	</subgroup>

	<subgroup>
	  <_short>Sidekick</_short>
	  <option name="sidekick_num_rotations" type="float">
	    <_short>Number of Rotations</_short>
	    <_long>Number of rotations for Sidekick (plus or minus 10% for randomness).</_long>
	    <default>0.5</default>
	    <min>0</min>
	    <max>5</max>
	    <precision>0.01</precision>
	  </option>
	  <option name="sidekick_springiness" type="float">
	    <_short>Springiness</_short>
	    <_long>How spring-like the Sidekick animation should be.</_long>
	    <default>0.0</default>
	    <min>0</min>
	    <max>1</max>
	    <precision>0.01</precision>
	  </option>
	  <option name="sidekick_zoom_from_center" type="int">
	    <_short>Zoom from Center</_short>
	    <_long>Zoom from center when playing the Sidekick animation.</_long>
	    <default>0</default>
	    <min>0</min>
	    <max>3</max>
	    <desc>
	      <value>0</value>
	      <_name>Off</_name>
	    </desc>
	    <desc>
	      <value>1</value>
	      <_name>Minimize/Unminimize Only</_name>
	    </desc>
	    <desc>
	      <value>2</value>
	      <_name>Open/Close Only</_name>
	    </desc>
	    <desc>
	      <value>3</value>
	      <_name>On</_name>
	    </desc>
	  </option>
	</subgroup>

	<subgroup>
	  <_short>Wave</_short>
	  <option name="wave_width" type="float">
	    <_short>Wave Width</_short>
	    <_long>The width of the wave relative to the window height.</_long>
	    <default>0.7</default>
	    <min>0.02</min>
	    <max>3</max>
	    <precision>0.01</precision>
	  </option>
	  <option name="wave_amp_mult" type="float">
	    <_short>Wave Amplitude Multiplier</_short>
	    <_long>Wave amplitude (size) is multiplied by this number. Negative values fold outward.</_long>
	    <default>1.0</default>
	    <min>-20</min>
	    <max>20</max>
	    <precision>0.1</precision>
	  </option>
	</subgroup>

	<subgroup>
	  <_short>Zoom</_short>
	  <option name="zoom_from_center" type="int">
	    <_short>Zoom from Center</_short>
	    <_long>Zoom from center when playing the Zoom animation.</_long>
	    <default>0</default>
	    <min>0</min>
	    <max>3</max>
	    <desc>
	      <value>0</value>
	      <_name>Off</_name>
	    </desc>
	    <desc>
	      <value>1</value>
	      <_name>Minimize/Unminimize Only</_name>
	    </desc>
	    <desc>
	      <value>2</value>
	      <_name>Open/Close Only</_name>
	    </desc>
	    <desc>
	      <value>3</value>
	      <_name>On</_name>
	    </desc>
	  </option>
	  <option name="zoom_springiness" type="float">
	    <_short>Springiness</_short>
	    <_long>How spring-like the Zoom animation should be.</_long>
	    <default>0.0</default>
	    <min>0</min>
	    <max>1</max>
	    <precision>0.01</precision>
	  </option>
	</subgroup>
      </group> 

    </options>

    <extension base_plugin="animation">
      <base_option>open_effects</base_option>
      <base_option>close_effects</base_option>
      <base_option>minimize_effects</base_option>
      <base_option>shade_effects</base_option>
      <restriction>
	<value>animation:None</value>
	<_name>None</_name>
      </restriction>
      <restriction>
	<value>animation:Random</value>
	<_name>Random</_name>
      </restriction>
    </extension>

    <extension base_plugin="animation">
      <base_option>open_effects</base_option>
      <base_option>open_random_effects</base_option>
      <base_option>close_effects</base_option>
      <base_option>close_random_effects</base_option>
      <base_option>minimize_effects</base_option>
      <base_option>minimize_random_effects</base_option>
      <base_option>shade_effects</base_option>
      <base_option>shade_random_effects</base_option>
      <restriction>
	<value>animation:Curved Fold</value>
	<_name>Curved Fold</_name>
      </restriction>
      <restriction>
	<value>animation:Horizontal Folds</value>
	<_name>Horizontal Folds</_name>
      </restriction>
    </extension>

    <extension base_plugin="animation">
      <base_option>shade_effects</base_option>
      <base_option>shade_random_effects</base_option>
      <restriction>
	<value>animation:Roll Up</value>
	<_name>Roll Up</_name>
      </restriction>
    </extension>

    <extension base_plugin="animation">
      <base_option>open_effects</base_option>
      <base_option>open_random_effects</base_option>
      <base_option>close_effects</base_option>
      <base_option>close_random_effects</base_option>
      <base_option>minimize_effects</base_option>
      <base_option>minimize_random_effects</base_option>
      <restriction>
	<value>animation:Dream</value>
	<_name>Dream</_name>
      </restriction>
      <restriction>
	<value>animation:Fade</value>
	<_name>Fade</_name>
      </restriction>
      <restriction>
	<value>animation:Glide 1</value>
	<_name>Glide 1</_name>
      </restriction>
      <restriction>
	<value>animation:Glide 2</value>
	<_name>Glide 2</_name>
      </restriction>
      <restriction>
	<value>animation:Magic Lamp</value>
	<_name>Magic Lamp</_name>
      </restriction>
      <restriction>
	<value>animation:Magic Lamp Wavy</value>
	<_name>Magic Lamp Wavy</_name>
      </restriction>
      <restriction>
	<value>animation:Sidekick</value>
	<_name>Sidekick</_name>
      </restriction>
      <restriction>
	<value>animation:Zoom</value>
	<_name>Zoom</_name>
      </restriction>
    </extension>

    <extension base_plugin="animation">
      <base_option>open_effects</base_option>
      <base_option>open_random_effects</base_option>
      <base_option>close_effects</base_option>
      <base_option>close_random_effects</base_option>
      <restriction>
	<value>animation:Wave</value>
	<_name>Wave</_name>
      </restriction>
    </extension>

    <extension base_plugin="animation">
      <base_option>focus_effects</base_option>
      <restriction>
	<value>animation:None</value>
	<_name>None</_name>
      </restriction>
      <restriction>
	<value>animation:Dodge</value>
	<_name>Dodge</_name>
      </restriction>
      <restriction>
	<value>animation:Focus Fade</value>
	<_name>Fade</_name>
      </restriction>
      <restriction>
	<value>animation:Wave</value>
	<_name>Wave</_name>
      </restriction>
    </extension>
    
  </plugin>
</compiz>