aboutsummaryrefslogtreecommitdiffstats
path: root/managers/clutter/mb-wm-comp-mgr-clutter.c
blob: 53c4bafa5ff57ca0e8d25910b1d7121f0f5fc12e (plain)
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
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
/*
 *  Matchbox Window Manager - A lightweight window manager not for the
 *                            desktop.
 *
 *  Authored By Tomas Frydrych <tf@o-hand.com>
 *
 *  Copyright (c) 2008 OpenedHand Ltd - http://o-hand.com
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2, or (at your option)
 *  any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 */

#include "matchbox.h"
#include "mb-wm-client.h"
#include "mb-wm-comp-mgr.h"
#include "mb-wm-comp-mgr-clutter.h"
#include "mb-wm-theme.h"
#include "tidy/tidy-texture-frame.h"

#include <clutter/clutter.h>
#include <clutter/x11/clutter-x11.h>
#if HAVE_CLUTTER_GLX
#include <clutter/glx/clutter-glx-texture-pixmap.h>
#endif
#include <X11/Xresource.h>
#include <X11/extensions/shape.h>
#include <X11/extensions/Xcomposite.h>

#include <math.h>

#define USE_DAMAGE_BOUNDING_BOX 1

#define SHADOW_RADIUS 4
#define SHADOW_OPACITY	0.9
#define SHADOW_OFFSET_X	(-SHADOW_RADIUS)
#define SHADOW_OFFSET_Y	(-SHADOW_RADIUS)

#define MAX_TILE_SZ 16 	/* make sure size/2 < MAX_TILE_SZ */
#define WIDTH  (3*MAX_TILE_SZ)
#define HEIGHT (3*MAX_TILE_SZ)

#define CMGR(x) MB_WM_COMP_MGR_CLUTTER(x)
#define CCLIENT(x) MB_WM_COMP_MGR_CLUTTER_CLIENT(x)

static unsigned char *
mbwm_cmc_shadow_gaussian_make_tile ();

static void
mbwm_cmc_add_actor (MBWMCompMgrClutter *, MBWMCompMgrClutterClient *);

/*
 * A helper object to store manager's per-client data
 */
struct _MBWMCompMgrClutterClientPrivate
{
  ClutterActor          *actor;  /* Overall actor */
  ClutterActor          *texture; /* The texture part of our actor */
  Pixmap                 pixmap;
  int                    pxm_width;
  int                    pxm_height;
  int                    pxm_depth;
  unsigned int           flags;
  Damage                 damage;

  int                    freeze_updates;
  int                    needs_update : 1;
};

static void mbwm_cmc_client_show_real (MBWMCompMgrClient *client);
static void mbwm_cmc_client_hide_real (MBWMCompMgrClient *client);
static void mbwm_cmc_client_repair_real (MBWMCompMgrClient *client);
static void mbwm_cmc_client_configure_real (MBWMCompMgrClient *client);

static void
mbwm_cmc_client_class_init (MBWMObjectClass *klass)
{
  MBWMCompMgrClientClass *c_klass = MB_WM_COMP_MGR_CLIENT_CLASS (klass);

  c_klass->show       = mbwm_cmc_client_show_real;
  c_klass->hide       = mbwm_cmc_client_hide_real;
  c_klass->repair     = mbwm_cmc_client_repair_real;
  c_klass->configure  = mbwm_cmc_client_configure_real;

#if MBWM_WANT_DEBUG
  klass->klass_name = "MBWMCompMgrClutterClient";
#endif
}

static void
mbwm_cmc_client_freeze (MBWMCompMgrClutterClient *client)
{
  client->priv->freeze_updates++;
}

static void
mbwm_cmc_client_unfreeze (MBWMCompMgrClutterClient * client)
{
  MBWMCompMgrClutterClientPrivate *priv = client->priv;

  priv->freeze_updates--;

  if (priv->freeze_updates < 0)
    priv->freeze_updates = 0;

  if (!priv->freeze_updates && priv->needs_update)
    mbwm_cmc_client_repair_real (MB_WM_COMP_MGR_CLIENT (client));
}


/*
 * Fetch the entire texture for our client
 */
static void
mbwm_cmc_fetch_texture (MBWMCompMgrClient *client)
{
  MBWMCompMgrClutterClient        *cclient   = CCLIENT(client);
  MBWMCompMgrClutterClientPrivate *priv      = cclient->priv;
  MBWindowManagerClient           *wm_client = client->wm_client;
  MBWMManager                     *wm        = client->wm;
  MBGeometry                       geom;
  Window                           xwin;
  Window                           root;
  int                              x, y, w, h, bw, depth;
#ifdef HAVE_XEXT
  /* Stuff we need for shaped windows */
  XRectangle                      *shp_rect;
  int                              shp_order;
  int                              shp_count;
  int                              i;

  /*
   * This is square of 32-bit comletely transparent values we use to
   * clear bits of the texture from shaped windows; the size is a compromise
   * between how much memory we want to allocate and how much tiling we are
   * happy with.
   *
   * Make this power of 2 for efficient operation
   */
#define SHP_CLEAR_SIZE 4
  static int clear_init = 0;
  static guint32 clear_data[SHP_CLEAR_SIZE * SHP_CLEAR_SIZE];

  if  (!clear_init)
    {
      memset (&clear_data, 0, sizeof (clear_data));
      clear_init = 1;
    }
#endif

  if (!(priv->flags & MBWMCompMgrClutterClientMapped))
    return;

  xwin =
    wm_client->xwin_frame ? wm_client->xwin_frame : wm_client->window->xwindow;

  if (priv->pixmap)
    XFreePixmap (wm->xdpy, priv->pixmap);

  priv->pixmap = XCompositeNameWindowPixmap (wm->xdpy, xwin);

  if (!priv->pixmap)
    return;

  XGetGeometry (wm->xdpy, priv->pixmap, &root,
		&x, &y, &w, &h, &bw, &depth);

  mb_wm_client_get_coverage (wm_client, &geom);

  priv->pxm_width  = w;
  priv->pxm_height = h;
  priv->pxm_depth  = depth;

  clutter_actor_set_position (priv->actor, geom.x, geom.y);
  clutter_actor_set_size (priv->texture, geom.width, geom.height);

  clutter_x11_texture_pixmap_set_pixmap (
				CLUTTER_X11_TEXTURE_PIXMAP (priv->texture),
				priv->pixmap);

#ifdef HAVE_XEXT
  /*
   * If the client is shaped, we have to manually clear any pixels in our
   * texture in the non-visible areas.
   */
  if (mb_wm_theme_is_client_shaped (wm->theme, wm_client))
    {
      shp_rect = XShapeGetRectangles (wm->xdpy, xwin,
				     ShapeBounding, &shp_count, &shp_order);

      if (shp_rect && shp_count)
	{
	  XserverRegion clear_rgn;
	  XRectangle    rect;
	  XRectangle   *clear_rect;
	  int           clear_count;
	  XRectangle   *r0, r1;
	  int           c;

	  rect.x = 0;
	  rect.y = 0;
	  rect.width = geom.width;
	  rect.height = geom.height;

	  clear_rgn   = XFixesCreateRegion (wm->xdpy, shp_rect, shp_count);

	  XFixesInvertRegion (wm->xdpy, clear_rgn, &rect, clear_rgn);

	  clear_rect = XFixesFetchRegion (wm->xdpy, clear_rgn, &clear_count);

	  for (i = 0; i < clear_count; ++i)
	    {
	      int k, l;

	      for (k = 0; k < clear_rect[i].width; k += SHP_CLEAR_SIZE)
		for (l = 0; l < clear_rect[i].height; l += SHP_CLEAR_SIZE)
		  {
		    int w1 = clear_rect[i].width - k;
		    int h1 = clear_rect[i].height - l;

		    if (w1 > SHP_CLEAR_SIZE)
		      w1 = SHP_CLEAR_SIZE;

		    if (h1 > SHP_CLEAR_SIZE)
		      h1 = SHP_CLEAR_SIZE;

		    clutter_texture_set_area_from_rgb_data (
					  CLUTTER_TEXTURE (priv->texture),
					  (const guchar *)&clear_data,
					  TRUE,
					  clear_rect[i].x + k,
					  clear_rect[i].y + l,
					  w1, h1,
					  SHP_CLEAR_SIZE * 4,
					  4,
					  CLUTTER_TEXTURE_RGB_FLAG_BGR,
                                          NULL);
		  }
	    }

	  XFixesDestroyRegion (wm->xdpy, clear_rgn);

	  XFree (shp_rect);

	  if (clear_rect)
	    XFree (clear_rect);
	}
    }

#endif
}

static int
mbwm_cmc_client_init (MBWMObject *obj, va_list vap)
{
  MBWMCompMgrClutterClient *cclient = CCLIENT (obj);

  cclient->priv =
    mb_wm_util_malloc0 (sizeof (MBWMCompMgrClutterClientPrivate));

  return 1;
}

static void
mbwm_cmc_client_destroy (MBWMObject* obj)
{
  MBWMCompMgrClient               *c       = MB_WM_COMP_MGR_CLIENT (obj);
  MBWMCompMgrClutterClient        *cclient = CCLIENT (obj);
  MBWMCompMgrClutterClientPrivate *priv    = cclient->priv;
  MBWMManager                     *wm      = c->wm;
  MBWMCompMgrClutter              *mgr     = CMGR (wm->comp_mgr);
  int                              i;

  if (priv->actor)
    clutter_actor_destroy (priv->actor);

  if (priv->pixmap)
    XFreePixmap (wm->xdpy, priv->pixmap);

  if (priv->damage)
    XDamageDestroy (wm->xdpy, priv->damage);

  free (priv);
}

int
mb_wm_comp_mgr_clutter_client_class_type ()
{
  static int type = 0;

  if (UNLIKELY(type == 0))
    {
      static MBWMObjectClassInfo info = {
	sizeof (MBWMCompMgrClutterClientClass),
	sizeof (MBWMCompMgrClutterClient),
	mbwm_cmc_client_init,
	mbwm_cmc_client_destroy,
	mbwm_cmc_client_class_init
      };

      type =
	mb_wm_object_register_class (&info, MB_WM_TYPE_COMP_MGR_CLIENT, 0);
    }

  return type;
}

/*
 * This is a private method, hence static (all instances of this class are
 * created automatically by the composite manager).
 */
static MBWMCompMgrClient *
mbwm_cmc_client_new (MBWindowManagerClient * client)
{
  MBWMObject *c;

  c = mb_wm_object_new (MB_WM_TYPE_COMP_MGR_CLUTTER_CLIENT,
			MBWMObjectPropClient, client,
			NULL);

  return MB_WM_COMP_MGR_CLIENT (c);
}

static void
mbwm_cmc_client_hide_real (MBWMCompMgrClient * client)
{
  MBWMCompMgrClutterClient        *cclient = CCLIENT (client);
  MBWMCompMgrClutterClientPrivate *priv    = cclient->priv;

  /*
   * Do not hide the actor if effect is in progress
   */
  if (priv->flags & MBWMCompMgrClutterClientEffectRunning)
    return;

  clutter_actor_hide (priv->actor);
}

static void
mbwm_cmc_client_show_real (MBWMCompMgrClient *client)
{
  MBWMCompMgrClutterClient        *cclient = CCLIENT (client);
  MBWMCompMgrClutterClientPrivate *priv    = cclient->priv;

  if (!priv->actor)
    {
      /*
       * This can happen if show() is called on our client before it is
       * actually mapped (we only alocate the actor in response to map
       * notification.
       */
      return;
    }

  /*
   * Clear the don't update flag, if set
   */
  priv->flags &= ~MBWMCompMgrClutterClientDontUpdate;
  clutter_actor_show_all (priv->actor);
}

void
mb_wm_comp_mgr_clutter_client_set_flags (MBWMCompMgrClutterClient     *cclient,
					 MBWMCompMgrClutterClientFlags flags)
{
  MBWMCompMgrClutterClientPrivate *priv = cclient->priv;

  priv->flags |= flags;
}


void
mb_wm_comp_mgr_clutter_client_unset_flags (MBWMCompMgrClutterClient  *cclient,
					   MBWMCompMgrClutterClientFlags flags)
{
  MBWMCompMgrClutterClientPrivate *priv = cclient->priv;

  priv->flags &= ~flags;
}

MBWMCompMgrClutterClientFlags
mb_wm_comp_mgr_clutter_client_get_flags (MBWMCompMgrClutterClient  *cclient)
{
  MBWMCompMgrClutterClientPrivate *priv = cclient->priv;

  return (MBWMCompMgrClutterClientFlags) priv->flags;
}


ClutterActor *
mb_wm_comp_mgr_clutter_client_get_actor (MBWMCompMgrClutterClient *cclient)
{
  MBWMCompMgrClutterClientPrivate *priv = cclient->priv;

  return g_object_ref(MB_WM_OBJECT (priv->actor));
}

/*
 * Implementation of MBWMCompMgrClutter
 */
struct _MBWMCompMgrClutterPrivate
{
  ClutterActor * arena;
  GList     * desktops;
  ClutterActor * shadow;

  Window         overlay_window;

  int            freeze_stack;

  unsigned int   restack_pending : 1;
};

static void
mbwm_cmc_private_free (MBWMCompMgrClutter *mgr)
{
  MBWMCompMgrClutterPrivate * priv = mgr->priv;

  if (priv->shadow)
    clutter_actor_destroy (priv->shadow);

  free (priv);
}

static void
mbwm_cmc_register_client_real (MBWMCompMgr           * mgr,
                               MBWindowManagerClient * c)
{
  MBWMCompMgrClient       *cclient;
  MBWMCompMgrClutter      *cmgr = CMGR (mgr);
  MBWMCompMgrClutterClass *klass
    = MB_WM_COMP_MGR_CLUTTER_CLASS (MB_WM_OBJECT_GET_CLASS (mgr));

  if (c->cm_client)
    return;

  cclient = klass->client_new (c);
  c->cm_client = cclient;
}

static void mbwm_cmc_turn_on_real (MBWMCompMgr *mgr);
static void mbwm_cmc_turn_off_real (MBWMCompMgr *mgr);
static void mbwm_cmc_map_notify_real (MBWMCompMgr *mgr,
                                      MBWindowManagerClient *c);
static void mbwm_cmc_client_transition_real (MBWMCompMgr           *mgr,
                                             MBWindowManagerClient *c1,
                                             MBWindowManagerClient *c2,
                                             Bool                   reverse);
static void mbwm_cmc_client_event_real (MBWMCompMgr            *mgr,
                                        MBWindowManagerClient  *client,
                                        MBWMCompMgrClientEvent  event);
static void mbwm_cmc_restack_real (MBWMCompMgr *mgr);
static Bool mb_wm_comp_mgr_is_my_window_real (MBWMCompMgr *mgr, Window xwin);
static void mbwm_cmc_select_desktop (MBWMCompMgr * mgr,
                                     int desktop, int old_desktop);
static Bool mbwm_cmc_handle_damage (XDamageNotifyEvent *de, MBWMCompMgr*mgr);

static void
mbwm_cmc_class_init (MBWMObjectClass *klass)
{
  MBWMCompMgrClass        *cm_klass = MB_WM_COMP_MGR_CLASS (klass);
  MBWMCompMgrClutterClass *clutter_klass =
    MB_WM_COMP_MGR_CLUTTER_CLASS (klass);

#if MBWM_WANT_DEBUG
  klass->klass_name = "MBWMCompMgrClutter";
#endif

  /*
   * NB -- we do not need render() implementation, since that is taken care of
   * automatically by clutter stage.
   */
  cm_klass->register_client   = mbwm_cmc_register_client_real;
  cm_klass->turn_on           = mbwm_cmc_turn_on_real;
  cm_klass->turn_off          = mbwm_cmc_turn_off_real;
  cm_klass->map_notify        = mbwm_cmc_map_notify_real;
  cm_klass->my_window         = mb_wm_comp_mgr_is_my_window_real;
  cm_klass->client_transition = mbwm_cmc_client_transition_real;
  cm_klass->client_event      = mbwm_cmc_client_event_real;
  cm_klass->restack           = mbwm_cmc_restack_real;
  cm_klass->select_desktop    = mbwm_cmc_select_desktop;
  cm_klass->handle_damage     = mbwm_cmc_handle_damage;

  clutter_klass->client_new   = mbwm_cmc_client_new;
}

static int
mbwm_cmc_init (MBWMObject *obj, va_list vap)
{
  MBWMCompMgr                * mgr  = MB_WM_COMP_MGR (obj);
  MBWMCompMgrClutter         * cmgr = CMGR (obj);
  MBWMCompMgrClutterPrivate  * priv;
  MBWMManager            * wm = mgr->wm;
  ClutterActor               * desktop, * arena;

  priv = mb_wm_util_malloc0 (sizeof (MBWMCompMgrClutterPrivate));
  cmgr->priv = priv;

  XCompositeRedirectSubwindows (wm->xdpy, wm->root_win->xwindow,
				CompositeRedirectManual);

  priv->arena = arena = clutter_group_new ();
  clutter_container_add_actor (CLUTTER_CONTAINER (clutter_stage_get_default()),
			       arena);
  clutter_actor_show (arena);

  desktop = clutter_group_new ();
  clutter_actor_show (desktop);
  clutter_container_add_actor (CLUTTER_CONTAINER (arena), desktop);
  priv->desktops = g_list_append (priv->desktops, desktop);

  return 1;
}

static void
mbwm_cmc_destroy (MBWMObject * obj)
{
  MBWMCompMgr        * mgr  = MB_WM_COMP_MGR (obj);
  MBWMCompMgrClutter * cmgr = CMGR (obj);

  mb_wm_comp_mgr_turn_off (mgr);
  mbwm_cmc_private_free (cmgr);
}

int
mb_wm_comp_mgr_clutter_class_type ()
{
  static int type = 0;

  if (UNLIKELY(type == 0))
    {
      static MBWMObjectClassInfo info = {
	sizeof (MBWMCompMgrClutterClass),
	sizeof (MBWMCompMgrClutter),
	mbwm_cmc_init,
	mbwm_cmc_destroy,
	mbwm_cmc_class_init
      };

      type = mb_wm_object_register_class (&info, MB_WM_TYPE_COMP_MGR, 0);
    }

  return type;
}

/* Shuts the compositing down */
static void
mbwm_cmc_turn_off_real (MBWMCompMgr *mgr)
{
  MBWMManager            * wm = mgr->wm;
  MBWMCompMgrClutterPrivate  * priv;

  if (!mgr)
    return;

  priv = CMGR (mgr)->priv;

  if (mgr->disabled)
    return;

  if (!mb_wm_stack_empty (wm))
    {
      MBWindowManagerClient * c;

      mb_wm_stack_enumerate (wm, c)
	{
	  mb_wm_comp_mgr_unregister_client (mgr, c);
	}
    }

  XCompositeReleaseOverlayWindow (wm->xdpy, wm->root_win->xwindow);
  priv->overlay_window = None;

  mgr->disabled = True;
}

static void
mbwm_cmc_turn_on_real (MBWMCompMgr *mgr)
{
  MBWMManager            * wm;
  MBWMCompMgrClutterPrivate  * priv;

  if (!mgr || !mgr->disabled)
    return;

  priv = CMGR (mgr)->priv;
  wm = mgr->wm;

  mgr->disabled = False;

  if (priv->overlay_window == None)
    {
      ClutterActor    * stage = clutter_stage_get_default ();
      ClutterColor      clr = {0, 0, 0, 0xff };
      Window            xwin;
      XserverRegion     region;

      /*
       * Fetch the overlay window
       */
      xwin = clutter_x11_get_stage_window (CLUTTER_STAGE (stage));

      priv->overlay_window =
	XCompositeGetOverlayWindow (wm->xdpy, wm->root_win->xwindow);

      /*
       * Reparent the stage window to the overlay window, this makes it
       * magically work :)
       */
      XReparentWindow (wm->xdpy, xwin, priv->overlay_window, 0, 0);

      /*
       * Use xfixes shape to make events pass through the overlay window
       *
       * TODO -- this has certain drawbacks, notably when our client is
       * tranformed (rotated, scaled, etc), the events will not be landing in
       * the right place. The answer to that is event forwarding with
       * translation.
       */
      region = XFixesCreateRegion (wm->xdpy, NULL, 0);

      XFixesSetWindowShapeRegion (wm->xdpy, priv->overlay_window,
				  ShapeBounding, 0, 0, 0);
      XFixesSetWindowShapeRegion (wm->xdpy, priv->overlay_window,
				  ShapeInput, 0, 0, region);

      XFixesDestroyRegion (wm->xdpy, region);

      clutter_actor_set_size (stage, wm->xdpy_width, wm->xdpy_height);
      clutter_stage_set_color (CLUTTER_STAGE (stage), &clr);

      clutter_actor_show (stage);
    }
}

static void
mbwm_cmc_client_repair_real (MBWMCompMgrClient * client)
{
  MBWindowManagerClient           *wm_client = client->wm_client;
  MBWMCompMgrClutterClient        *cclient   = CCLIENT (client);
  MBWMCompMgrClutterClientPrivate *priv      = cclient->priv;
  MBWMManager                     *wm        = client->wm;
  XserverRegion                    parts;
  int                              i, r_count;
  XRectangle                      *r_damage;
  XRectangle                       r_bounds;

  MBWM_NOTE (COMPOSITOR, "REPAIRING %x", wm_client->window->xwindow);

  if (!priv->actor)
    return;

  if (priv->freeze_updates)
    {
      priv->needs_update = 1;
      return;
    }

  priv->needs_update = 0;

  if (!priv->pixmap)
    {
      /*
       * First time we have been called since creation/configure,
       * fetch the whole texture.
       */
      MBWM_NOTE (DAMAGE, "Full screen repair.");
      XDamageSubtract (wm->xdpy, priv->damage, None, None);
      mbwm_cmc_fetch_texture (client);
      return;
    }

  /*
   * Retrieve the damaged region and break it down into individual
   * rectangles so we do not have to update the whole shebang.
   */
  parts = XFixesCreateRegion (wm->xdpy, 0, 0);
  XDamageSubtract (wm->xdpy, priv->damage, None, parts);

  r_damage = XFixesFetchRegionAndBounds (wm->xdpy, parts,
					 &r_count,
					 &r_bounds);

  if (r_damage)
    {
#if USE_DAMAGE_BOUNDING_BOX
	  clutter_x11_texture_pixmap_update_area (
			CLUTTER_X11_TEXTURE_PIXMAP (priv->texture),
			r_bounds.x,
			r_bounds.y,
			r_bounds.width,
			r_bounds.height);
#else
      for (i = 0; i < r_count; ++i)
	{
	  MBWM_NOTE (DAMAGE, "Repairing %d,%d;%dx%d",
		     r_damage[i].x,
		     r_damage[i].y,
		     r_damage[i].width,
		     r_damage[i].height);

	  clutter_x11_texture_pixmap_update_area (
			CLUTTER_X11_TEXTURE_PIXMAP (priv->texture),
			r_damage[i].x,
			r_damage[i].y,
			r_damage[i].width,
			r_damage[i].height);
	}
#endif
      XFree (r_damage);
    }

  XFixesDestroyRegion (wm->xdpy, parts);
}

static void
mbwm_cmc_client_configure_real (MBWMCompMgrClient * client)
{
  MBWindowManagerClient           *wm_client = client->wm_client;
  MBWMCompMgrClutterClient        *cclient   = CCLIENT (client);
  MBWMCompMgrClutterClientPrivate *priv      = cclient->priv;

  MBWM_NOTE (COMPOSITOR, "CONFIGURE request");

  /*
   * Release the backing pixmap; we will recreate it next time we get damage
   * notification for this window.
   */
  if (priv->pixmap)
    {
      XFreePixmap (client->wm->xdpy, priv->pixmap);
      priv->pixmap = None;
    }
}

static Bool
mbwm_cmc_handle_damage (XDamageNotifyEvent * de,
				      MBWMCompMgr        * mgr)
{
  MBWMCompMgrClutterPrivate * priv = CMGR (mgr)->priv;
  MBWMManager               * wm   = mgr->wm;
  MBWindowManagerClient     * c;

  c = mb_wm_manager_managed_window_from_frame (wm, de->drawable);

  if (c && c->cm_client)
    {
      MBWMCompMgrClutterClient        *cclient = CCLIENT (c->cm_client);
      MBWMCompMgrClutterClientPrivate *cpriv   = cclient->priv;

      if (!cpriv->actor ||
	  (cpriv->flags & MBWMCompMgrClutterClientDontUpdate))
	return False;

      MBWM_NOTE (COMPOSITOR,
		 "Reparing window %x, geometry %d,%d;%dx%d; more %d\n",
		 de->drawable,
		 de->geometry.x,
		 de->geometry.y,
		 de->geometry.width,
		 de->geometry.height,
		 de->more);

      mbwm_cmc_client_repair_real (c->cm_client);
    }
  else
    {
      MBWM_NOTE (COMPOSITOR, "Failed to find client for window %x\n",
		 de->drawable);
    }

  return False;
}

static void
mbwm_cmc_freeze_stack (MBWMCompMgr *mgr)
{
  CMGR (mgr)->priv->freeze_stack++;
}

static void
mbwm_cmc_unfreeze_stack (MBWMCompMgr *mgr)
{
  MBWMCompMgrClutterPrivate *priv = CMGR (mgr)->priv;

  priv->freeze_stack--;

  if (priv->freeze_stack < 0)
    priv->freeze_stack = 0;

  if (!priv->freeze_stack && priv->restack_pending)
    mbwm_cmc_restack_real ((MBWMCompMgr *)mgr);
}

static void
mbwm_cmc_restack_real (MBWMCompMgr *mgr)
{
  MBWMManager               *wm = mgr->wm;
  MBWMCompMgrClutter        *cmgr = CMGR (mgr);
  MBWMCompMgrClutterPrivate *priv = cmgr->priv;
  GList                     *l;
  int                        i = 0;

  if (priv->freeze_stack)
    {
      priv->restack_pending = 1;
      return;
    }

  priv->restack_pending = 0;

  l = priv->desktops;

  if (!mb_wm_stack_empty (wm))
    {
      MBWindowManagerClient * c;

      while (l)
	{
	  ClutterActor *desktop = l->data;
	  ClutterActor * prev = NULL;

	  mb_wm_stack_enumerate (wm, c)
	    {
	      MBWMCompMgrClutterClient * cc;
	      ClutterActor             * a;

	      if (mb_wm_client_get_desktop (c) != i)
		continue;

	      cc = CCLIENT (c->cm_client);

	      a = cc->priv->actor;

	      if (!a || clutter_actor_get_parent (a) != desktop)
		continue;

	      clutter_actor_raise (a, prev);

	      prev = a;
	    }

	  l = l->next;
	  ++i;
	}
    }
}

GList *
mb_wm_comp_mgr_clutter_get_desktops (MBWMCompMgrClutter *cmgr)
{
  return cmgr->priv->desktops;
}

/*
 * Gets the n-th desktop from our desktop list; if we do not have that many
 * desktops, just append new ones.
 */
ClutterActor *
mb_wm_comp_mgr_clutter_get_nth_desktop (MBWMCompMgrClutter * cmgr, int desktop)
{
  MBWMCompMgrClutterPrivate * priv = cmgr->priv;
  GList * l = priv->desktops;
  int i = 0;

  while (l && i != desktop)
    {
      ++i;

      if (l->next)
	l = l->next;
      else
	{
	  /* End of the line -- append new desktop */
	  ClutterActor * d = clutter_group_new ();
	  priv->desktops = g_list_append (priv->desktops, d);
	  clutter_container_add_actor (CLUTTER_CONTAINER (priv->arena), d);

	  l = l->next;
	}
    }

  return CLUTTER_ACTOR (l->data);
}

/*
 * Returns the arena; this is an intermediate group which contains all the
 * other actors the CM uses. The caller of this function holds a reference
 * to the returned ClutterActor and must release it once no longer needed.
 */
ClutterActor *
mb_wm_comp_mgr_clutter_get_arena (MBWMCompMgrClutter *cmgr)
{
  MBWMCompMgrClutterPrivate * priv = cmgr->priv;

  return g_object_ref (priv->arena);
}


static void
mbwm_cmc_select_desktop (MBWMCompMgr * mgr,
                         int           desktop,
                         int           old_desktop)
{
  MBWMCompMgrClutter * cmgr = CMGR (mgr);
  ClutterActor       * d;
  GList           * l;

  d = mb_wm_comp_mgr_clutter_get_nth_desktop (cmgr, desktop);

  l = cmgr->priv->desktops;

  while (l)
    {
      ClutterActor * a = l->data;

      if (a == d)
	clutter_actor_show (a);
      else
	clutter_actor_hide (a);

      l = l->next;
    }
}

static void
mbwm_cmc_map_notify_real (MBWMCompMgr *mgr,
                          MBWindowManagerClient *c)
{
  MBWMCompMgrClutter              *cmgr    = CMGR (mgr);
  MBWMCompMgrClient               *client  = c->cm_client;
  MBWMCompMgrClutterClient        *cclient = CCLIENT(client);
  MBWMCompMgrClutterClientPrivate *priv    = cclient->priv;
  MBWMManager                     *wm      = client->wm;
  ClutterActor                    *actor;
  ClutterActor                    *texture;
  ClutterActor                    *rect;
  MBGeometry                       geom;
  const GList                     *l;
  unsigned int                     shadow_clr[4];
  ClutterColor                     shadow_cclr;
  MBWMCompMgrShadowType            shadow_type;
  MBWMClientType                   ctype = MB_WM_CLIENT_CLIENT_TYPE (c);

  if (mb_wm_client_is_hiding_from_desktop (c))
    {
      /*
       * We already have the resources, except we have to get a new
       * backing pixmap
       */
      Window xwin = c->xwin_frame ? c->xwin_frame : c->window->xwindow;

      /*
       * FIXME -- Must rebind the pixmap to the texture -- this is not ideal
       * since our texture already contains the correct data, but without
       * this it will not update. Perhaps we some extension to the clutter
       * API is needed here.
       */
      mbwm_cmc_fetch_texture (client);

      clutter_actor_show (priv->actor);
      return;
    }

  /*
   * We get called for windows as well as their children, so once we are
   * mapped do nothing.
   */
  if (priv->flags & MBWMCompMgrClutterClientMapped)
    return;

  priv->flags |= MBWMCompMgrClutterClientMapped;

  priv->damage = XDamageCreate (wm->xdpy,
                                c->xwin_frame ?
                                c->xwin_frame :
                                c->window->xwindow,
#ifdef USE_DAMAGE_BOUNDING_BOX
                                XDamageReportBoundingBox
#else
				XDamageReportNonEmpty
#endif
                                   );

  mb_wm_client_get_coverage (c, &geom);

  actor = g_object_ref (clutter_group_new ());
#if HAVE_CLUTTER_GLX
  texture = clutter_glx_texture_pixmap_new ();
#else
  texture = clutter_x11_texture_pixmap_new ();
#endif
  clutter_actor_show (texture);

  if (ctype == MBWMClientTypeDialog   ||
      ctype == MBWMClientTypeMenu     ||
      ctype == MBWMClientTypeNote     ||
      ctype == MBWMClientTypeOverride)
    {
      shadow_type = mb_wm_theme_get_shadow_type (wm->theme);

      if (shadow_type == MBWM_COMP_MGR_SHADOW_NONE)
	{
	  clutter_container_add (CLUTTER_CONTAINER (actor), texture, NULL);
	}
      else
	{
	  if (shadow_type == MBWM_COMP_MGR_SHADOW_SIMPLE)
	    {
	      mb_wm_theme_get_shadow_color (wm->theme,
					    &shadow_clr[0],
					    &shadow_clr[1],
					    &shadow_clr[2],
					    &shadow_clr[3]);

	      shadow_cclr.red   = 0xff * shadow_clr[0] / 0xffff;
	      shadow_cclr.green = 0xff * shadow_clr[1] / 0xffff;
	      shadow_cclr.blue  = 0xff * shadow_clr[2] / 0xffff;
	      shadow_cclr.alpha = 0xff * shadow_clr[3] / 0xffff;

	      rect = clutter_rectangle_new_with_color (&shadow_cclr);
	      clutter_actor_set_position (rect, 4, 4);
	    }
	  else
	    {
	      ClutterActor  * txt = cmgr->priv->shadow;
	      if (!txt)
		{
		  unsigned char * data;

		  data = mbwm_cmc_shadow_gaussian_make_tile ();

		  txt = clutter_texture_new ();

		  clutter_texture_set_from_rgb_data (CLUTTER_TEXTURE (txt),
						     data,
						     TRUE,
						     WIDTH,
						     HEIGHT,
						     WIDTH*4,
						     4,
						     0,
						     NULL);
		  free (data);

		  cmgr->priv->shadow = txt;
		}

	      rect = tidy_texture_frame_new (CLUTTER_TEXTURE (txt),
					     MAX_TILE_SZ,
					     MAX_TILE_SZ,
					     MAX_TILE_SZ,
					     MAX_TILE_SZ);
	      clutter_actor_set_position (rect,
					  2*SHADOW_RADIUS, 2*SHADOW_RADIUS);
	    }

          clutter_actor_set_size (rect, geom.width, geom.height);
	  clutter_actor_show (rect);

	  clutter_container_add (CLUTTER_CONTAINER (actor),
				 rect, texture, NULL);
	}
    }
  else
    {
      clutter_container_add (CLUTTER_CONTAINER (actor), texture, NULL);
    }


  priv->actor = actor;
  priv->texture = texture;

  g_object_set_data (G_OBJECT (actor), "MBWMCompMgrClutterClient", cclient);

  clutter_actor_set_position (actor, geom.x, geom.y);
  clutter_actor_set_size (texture, geom.width, geom.height);

  mbwm_cmc_add_actor (cmgr, cclient);
}

static void
mbwm_cmc_transtion_fade_out_cb (ClutterAnimation         *anim,
                                MBWMCompMgrClutterClient *client)
{
  client->priv->flags &= ~MBWMCompMgrClutterClientEffectRunning;

#if 0
  /* FIXME -- see if we need this */
  mb_wm_object_unref (MB_WM_OBJECT (client));
#endif
}

static void
_fade_apply_behaviour_to_client (MBWindowManagerClient *wc,
                                 unsigned long          duration)
{
  GList            *l;
  ClutterActor     *a = CCLIENT (wc->cm_client)->priv->actor;
  ClutterAnimation *anim;

  clutter_actor_set_opacity (a, 0);

  anim = clutter_actor_animate (a,
                                CLUTTER_EASE_IN_SINE,
                                duration,
                                "opacity", 0xff,
                                wc->cm_client);

  g_signal_connect_after (anim, "completed",
                      G_CALLBACK (mbwm_cmc_transtion_fade_out_cb),
                      NULL);

  l = mb_wm_client_get_transients (wc);
  while (l)
    {
      MBWindowManagerClient * c = l->data;

      _fade_apply_behaviour_to_client (c, duration);
      l = l->next;
    }
}

static void
mbwm_cmc_client_transition_fade (MBWMCompMgrClutterClient *cclient1,
                                 MBWMCompMgrClutterClient *cclient2,
                                 unsigned long             duration)
{
  /*
   * Fade is simple -- we only need to animate the second actor and its
   * children, as the stacking order automatically takes care of the
   * actor appearing to fade out from the first one
   */
  cclient2->priv->flags |= MBWMCompMgrClutterClientEffectRunning;

  _fade_apply_behaviour_to_client (MB_WM_COMP_MGR_CLIENT (cclient2)->wm_client,
                                   duration);
}

static void
mbwm_cmc_client_transition_real (MBWMCompMgr           *mgr,
                                 MBWindowManagerClient *c1,
                                 MBWindowManagerClient *c2,
                                 Bool                   reverse)
{
  MBWMCompMgrClutterClient * cclient1 = CCLIENT (c1->cm_client);
  MBWMCompMgrClutterClient * cclient2 = CCLIENT (c2->cm_client);

  mbwm_cmc_client_transition_fade (cclient1, cclient2, 100);
}

static void
mbwm_cmc_client_event_completed_hide_cb (ClutterAnimation         *anim,
                                         MBWMCompMgrClutterClient *client)
{
  MBWMCompMgrClient *c = MB_WM_COMP_MGR_CLIENT (client);

  client->priv->flags &= ~MBWMCompMgrClutterClientEffectRunning;
  clutter_actor_hide (client->priv->actor);
  clutter_actor_set_scale (client->priv->actor, 1.0, 1.0);
  mbwm_cmc_unfreeze_stack (c->wm->comp_mgr);
  mbwm_cmc_client_unfreeze (client);

  /*
   * Release the extra reference on the CM client that was added for the sake
   * of the effect
   */
  mb_wm_object_unref (MB_WM_OBJECT (client));
}

static void
mbwm_cmc_client_event_completed_cb (ClutterAnimation         *anim,
                                    MBWMCompMgrClutterClient *client)
{
  client->priv->flags &= ~MBWMCompMgrClutterClientEffectRunning;

  /*
   * Release the extra reference on the CM client that was added for the sake
   * of the effect
   */
  mb_wm_object_unref (MB_WM_OBJECT (client));
}

static void
mbwm_cmc_client_event_real (MBWMCompMgr            *mgr,
                            MBWindowManagerClient  *client,
                            MBWMCompMgrClientEvent  event)
{
  MBWMCompMgrClutterClient        *cclient = CCLIENT (client->cm_client);
  MBWMCompMgrClutterClientPrivate *priv    = cclient->priv;
  ClutterAnimation                *anim    = NULL;

  if (MB_WM_CLIENT_CLIENT_TYPE (client) != MBWMClientTypeApp)
    return;

  /* FIXME -- this is where the animation is applied */
  switch (event)
    {
    case MBWMCompMgrClientEventMinimize:
      mbwm_cmc_freeze_stack (mgr);
      mbwm_cmc_client_freeze (cclient);

      mb_wm_object_ref (MB_WM_OBJECT (cclient));
      priv->flags |= MBWMCompMgrClutterClientEffectRunning;

      anim = clutter_actor_animate (priv->actor,
                                    CLUTTER_EASE_IN_SINE,
                                    200,
                                    "scale-x", 0.0,
                                    "scale-y", 0.0,
                                    NULL);
      g_signal_connect_after (anim, "completed",
                           G_CALLBACK (mbwm_cmc_client_event_completed_hide_cb),
                              cclient);
      break;
    case MBWMCompMgrClientEventUnmap:
      mbwm_cmc_freeze_stack (mgr);
      mbwm_cmc_client_freeze (cclient);

      mb_wm_object_ref (MB_WM_OBJECT (cclient));
      priv->flags |= MBWMCompMgrClutterClientEffectRunning;

      anim = clutter_actor_animate (priv->actor,
                                    CLUTTER_EASE_IN_SINE,
                                    200,
                                    "scale-x", 0.0,
                                    "scale-y", 0.0,
                                    NULL);
      g_signal_connect_after (anim, "completed",
                           G_CALLBACK (mbwm_cmc_client_event_completed_hide_cb),
                              cclient);
      break;
    case MBWMCompMgrClientEventMap:
      mb_wm_object_ref (MB_WM_OBJECT (cclient));
      priv->flags |= MBWMCompMgrClutterClientEffectRunning;

      clutter_actor_set_scale_full (priv->actor, 0.0, 0.0,
                                    clutter_actor_get_width (priv->actor)/ 2,
                                    clutter_actor_get_height (priv->actor) / 2);
      clutter_actor_show (priv->actor);

      anim = clutter_actor_animate (priv->actor,
                                    CLUTTER_EASE_IN_SINE,
                                    200,
                                    "scale-x", 1.0,
                                    "scale-y", 1.0,
                                    NULL);
      g_signal_connect_after (anim, "completed",
                              G_CALLBACK (mbwm_cmc_client_event_completed_cb),
                              cclient);
      break;
    default:;
    }
}

/*
 * Our windows which we need the WM to ingore are the overlay and the stage
 * window.
 */
static Bool
mb_wm_comp_mgr_is_my_window_real (MBWMCompMgr * mgr, Window xwin)
{
  MBWMCompMgrClutterPrivate * priv = CMGR (mgr)->priv;
  ClutterActor              * stage;

  if (priv->overlay_window == xwin)
    return True;

  stage = clutter_stage_get_default ();

  if (xwin == clutter_x11_get_stage_window (CLUTTER_STAGE (stage)))
    return True;

  return False;
}

static void
mbwm_cmc_add_actor (MBWMCompMgrClutter       *cmgr,
                    MBWMCompMgrClutterClient *cclient)
{
  MBWindowManagerClient * c = MB_WM_COMP_MGR_CLIENT (cclient)->wm_client;
  MBWMCompMgrClutterClientPrivate *priv = cclient->priv;
  ClutterActor          * d;
  int                     desktop = mb_wm_client_get_desktop (c);

  /*
   * Sanity check; if the desktop is unset, add to desktop 0.
   */
  if (desktop < 0)
    desktop = 0;

  d = mb_wm_comp_mgr_clutter_get_nth_desktop (cmgr, desktop);

  clutter_container_add_actor (CLUTTER_CONTAINER (d), priv->actor);
}

MBWMCompMgr *
mb_wm_comp_mgr_clutter_new (MBWMManager *wm)
{
  MBWMObject *mgr;

  mgr = mb_wm_object_new (MB_WM_TYPE_COMP_MGR_CLUTTER,
			  MBWMObjectPropWm, wm,
			  NULL);

  return MB_WM_COMP_MGR (mgr);
}

/* ------------------------------- */
/* Shadow Generation */

typedef struct MBGaussianMap
{
  int	   size;
  double * data;
} MBGaussianMap;

static double
gaussian (double r, double x, double y)
{
  return ((1 / (sqrt (2 * M_PI * r))) *
	  exp ((- (x * x + y * y)) / (2 * r * r)));
}


static MBGaussianMap *
mbwm_cmc_make_gaussian_map (double r)
{
  MBGaussianMap  *c;
  int	          size = ((int) ceil ((r * 3)) + 1) & ~1;
  int	          center = size / 2;
  int	          x, y;
  double          t = 0.0;
  double          g;

  c = malloc (sizeof (MBGaussianMap) + size * size * sizeof (double));
  c->size = size;

  c->data = (double *) (c + 1);

  for (y = 0; y < size; y++)
    for (x = 0; x < size; x++)
      {
	g = gaussian (r, (double) (x - center), (double) (y - center));
	t += g;
	c->data[y * size + x] = g;
      }

  for (y = 0; y < size; y++)
    for (x = 0; x < size; x++)
      c->data[y*size + x] /= t;

  return c;
}

static unsigned char
mbwm_cmc_sum_gaussian (MBGaussianMap * map, double opacity,
                       int x, int y, int width, int height)
{
  int	           fx, fy;
  double         * g_data;
  double         * g_line = map->data;
  int	           g_size = map->size;
  int	           center = g_size / 2;
  int	           fx_start, fx_end;
  int	           fy_start, fy_end;
  double           v;
  unsigned int     r;

  /*
   * Compute set of filter values which are "in range",
   * that's the set with:
   *	0 <= x + (fx-center) && x + (fx-center) < width &&
   *  0 <= y + (fy-center) && y + (fy-center) < height
   *
   *  0 <= x + (fx - center)	x + fx - center < width
   *  center - x <= fx	fx < width + center - x
   */

  fx_start = center - x;
  if (fx_start < 0)
    fx_start = 0;
  fx_end = width + center - x;
  if (fx_end > g_size)
    fx_end = g_size;

  fy_start = center - y;
  if (fy_start < 0)
    fy_start = 0;
  fy_end = height + center - y;
  if (fy_end > g_size)
    fy_end = g_size;

  g_line = g_line + fy_start * g_size + fx_start;

  v = 0;
  for (fy = fy_start; fy < fy_end; fy++)
    {
      g_data = g_line;
      g_line += g_size;

      for (fx = fx_start; fx < fx_end; fx++)
	v += *g_data++;
    }
  if (v > 1)
    v = 1;

  v *= (opacity * 255.0);

  r = (unsigned int) v;

  return (unsigned char) r;
}

static unsigned char *
mbwm_cmc_shadow_gaussian_make_tile ()
{
  unsigned char              * data;
  int		               size;
  int		               center;
  int		               x, y;
  unsigned char                d;
  int                          pwidth, pheight;
  double                       opacity = SHADOW_OPACITY;
  static MBGaussianMap       * gaussian_map = NULL;

  struct _mypixel
  {
    unsigned char r;
    unsigned char g;
    unsigned char b;
    unsigned char a;
  } * _d;


  if (!gaussian_map)
    gaussian_map =
      mbwm_cmc_make_gaussian_map (SHADOW_RADIUS);

  size   = gaussian_map->size;
  center = size / 2;

  /* Top & bottom */

  pwidth  = MAX_TILE_SZ;
  pheight = MAX_TILE_SZ;

  data = mb_wm_util_malloc0 (4 * WIDTH * HEIGHT);

  _d = (struct _mypixel*) data;

  /* N */
  for (y = 0; y < pheight; y++)
    {
      d = mbwm_cmc_sum_gaussian (gaussian_map, opacity,
                                 center, y - center,
                                 WIDTH, HEIGHT);
      for (x = 0; x < pwidth; x++)
	{
	  _d[y*3*pwidth + x + pwidth].r = 0;
	  _d[y*3*pwidth + x + pwidth].g = 0;
	  _d[y*3*pwidth + x + pwidth].b = 0;
	  _d[y*3*pwidth + x + pwidth].a = d;
	}

    }

  /* S */
  pwidth = MAX_TILE_SZ;
  pheight = MAX_TILE_SZ;

  for (y = 0; y < pheight; y++)
    {
      d = mbwm_cmc_sum_gaussian (gaussian_map, opacity,
                                 center, y - center,
                                 WIDTH, HEIGHT);
      for (x = 0; x < pwidth; x++)
	{
	  _d[(pheight-y-1)*3*pwidth + 6*pwidth*pheight + x + pwidth].r = 0;
	  _d[(pheight-y-1)*3*pwidth + 6*pwidth*pheight + x + pwidth].g = 0;
	  _d[(pheight-y-1)*3*pwidth + 6*pwidth*pheight + x + pwidth].b = 0;
	  _d[(pheight-y-1)*3*pwidth + 6*pwidth*pheight + x + pwidth].a = d;
	}

    }


  /* w */
  pwidth = MAX_TILE_SZ;
  pheight = MAX_TILE_SZ;

  for (x = 0; x < pwidth; x++)
    {
      d = mbwm_cmc_sum_gaussian (gaussian_map, opacity,
                                 x - center, center,
                                 WIDTH, HEIGHT);
      for (y = 0; y < pheight; y++)
	{
	  _d[y*3*pwidth + 3*pwidth*pheight + x].r = 0;
	  _d[y*3*pwidth + 3*pwidth*pheight + x].g = 0;
	  _d[y*3*pwidth + 3*pwidth*pheight + x].b = 0;
	  _d[y*3*pwidth + 3*pwidth*pheight + x].a = d;
	}

    }

  /* E */
  for (x = 0; x < pwidth; x++)
    {
      d = mbwm_cmc_sum_gaussian (gaussian_map, opacity,
                                 x - center, center,
                                 WIDTH, HEIGHT);
      for (y = 0; y < pheight; y++)
	{
	  _d[y*3*pwidth + 3*pwidth*pheight + (pwidth-x-1) + 2*pwidth].r = 0;
	  _d[y*3*pwidth + 3*pwidth*pheight + (pwidth-x-1) + 2*pwidth].g = 0;
	  _d[y*3*pwidth + 3*pwidth*pheight + (pwidth-x-1) + 2*pwidth].b = 0;
	  _d[y*3*pwidth + 3*pwidth*pheight + (pwidth-x-1) + 2*pwidth].a = d;
	}

    }

  /* NW */
  pwidth = MAX_TILE_SZ;
  pheight = MAX_TILE_SZ;

  for (x = 0; x < pwidth; x++)
    for (y = 0; y < pheight; y++)
      {
	d = mbwm_cmc_sum_gaussian (gaussian_map, opacity,
                                   x-center, y-center,
                                   WIDTH, HEIGHT);

	_d[y*3*pwidth + x].r = 0;
	_d[y*3*pwidth + x].g = 0;
	_d[y*3*pwidth + x].b = 0;
	_d[y*3*pwidth + x].a = d;
      }

  /* SW */
  for (x = 0; x < pwidth; x++)
    for (y = 0; y < pheight; y++)
      {
	d = mbwm_cmc_sum_gaussian (gaussian_map, opacity,
                                   x-center, y-center,
                                   WIDTH, HEIGHT);

	_d[(pheight-y-1)*3*pwidth + 6*pwidth*pheight + x].r = 0;
	_d[(pheight-y-1)*3*pwidth + 6*pwidth*pheight + x].g = 0;
	_d[(pheight-y-1)*3*pwidth + 6*pwidth*pheight + x].b = 0;
	_d[(pheight-y-1)*3*pwidth + 6*pwidth*pheight + x].a = d;
      }

  /* SE */
  for (x = 0; x < pwidth; x++)
    for (y = 0; y < pheight; y++)
      {
	d = mbwm_cmc_sum_gaussian (gaussian_map, opacity,
                                   x-center, y-center,
                                   WIDTH, HEIGHT);

	_d[(pheight-y-1)*3*pwidth + 6*pwidth*pheight + (pwidth-x-1) +
	   2*pwidth].r = 0;
	_d[(pheight-y-1)*3*pwidth + 6*pwidth*pheight + (pwidth-x-1) +
	   2*pwidth].g = 0;
	_d[(pheight-y-1)*3*pwidth + 6*pwidth*pheight + (pwidth-x-1) +
	   2*pwidth].b = 0;
	_d[(pheight-y-1)*3*pwidth + 6*pwidth*pheight + (pwidth-x-1) +
	   2*pwidth].a = d;
      }

  /* NE */
  for (x = 0; x < pwidth; x++)
    for (y = 0; y < pheight; y++)
      {
	d = mbwm_cmc_sum_gaussian (gaussian_map, opacity,
                                   x-center, y-center, WIDTH, HEIGHT);

	_d[y*3*pwidth + (pwidth - x - 1) + 2*pwidth].r = 0;
	_d[y*3*pwidth + (pwidth - x - 1) + 2*pwidth].g = 0;
	_d[y*3*pwidth + (pwidth - x - 1) + 2*pwidth].b = 0;
	_d[y*3*pwidth + (pwidth - x - 1) + 2*pwidth].a = d;
      }

  /* center */
  pwidth = MAX_TILE_SZ;
  pheight = MAX_TILE_SZ;

  d = mbwm_cmc_sum_gaussian (gaussian_map, opacity,
                             center, center, WIDTH, HEIGHT);

  for (x = 0; x < pwidth; x++)
    for (y = 0; y < pheight; y++)
      {
	_d[y*3*pwidth + 3*pwidth*pheight + x + pwidth].r = 0;
	_d[y*3*pwidth + 3*pwidth*pheight + x + pwidth].g = 0;
	_d[y*3*pwidth + 3*pwidth*pheight + x + pwidth].b = 0;
	_d[y*3*pwidth + 3*pwidth*pheight + x + pwidth].a = d;
      }

  return data;
}