~fginther/+junk/geis-2.2.9.1-take2

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
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
2011-03-31  Stephen M. Webb  <stephen.webb@canonical.com>

  Add initial python bindings.

  * python/Makefile.am: new file
  * python/_geis_bindings/_geis_bindings.c: new file
  * python/geis/__init__.py: new file
  * python/geis/geis_v2.py: new file
  * python/pygeis: new script
  * Makefile.am (SUBDIRS): added python
  * configure.ac (AC_CONFIG_FILES): added new generated files

2011-04-10  Stephen M. Webb  <stephen.webb@canonical.com>

  Repaired a callback persistence problem (LP: #754135).

  * testsuite/geis1/check_subscription.c: new test suite
  * libutouch-geis/geis_v1.c: saved a copy of the callback tables
  * testsuite/geis1/Makefile.am: included new test suite
  * testsuite/geis1/check_geis1_api.c: ran new test suite

2011-04-12  Stephen M. Webb  <stephen.webb@canonical.com>

  Made direct use of XI2.1 optional at build time (LP: #741404).

  * m4/ax_enable_xi2.m4: new autoconf macro
  * configure.ac: invoked the new macro
  * libutouch-geis/backend/xcb/geis_xcb_backend.c: optioned XI2.1 code

2011-04-05  Stephen M. Webb  <stephen.webb@canonical.com>

  Fixed invalid pointer dereference on XI initialization failure in XCB back
  end (LP: #730899).

  * libutouch-geis/backend/xcb/geis_xcb_backend.c
    (geis_xcb_backend_new): cleared properly to indicate a failure.

2011-03-28  Stephen M. Webb  <stephen.webb@canonical.com>

  Changes the list of attrs received from grail for the Touch gesture.

  * libutouch-geis/backend/xcb/grail_gestures.c: change Touch attrs

2011-03-25  Stephen M. Webb  <stephen.webb@canonical.com>

  Added new TOUCH gesture types (LP: #742555).

  * include/geis/geis.h: added new TOUCH gesture types
  * libutouch-geis/backend/xcb/geis_xcb_backend.c: tweaked gesture mask size
  * libutouch-geis/backend/xcb/grail_gestures.c: added new TOUCH gesture types
    added proper handling of a variable-size gesture mask
  * libutouch-geis/geis_v1.c: mapped new TOUCH gesture types to grail TOUCH
    gesture types
  * testsuite/geis1/check_gesture_types.c: new testsuite
  * testsuite/geis1/Makefile.am: added new testsuite
  * testsuite/geis1/check_geis1_api.c: invoked new testsuite
  * testsuite/geistest/geistest.c: added new gesture types

2011-03-24  Stephen M. Webb  <stephen.webb@canonical.com>

  Fixed a bad index when translating grail touches (LP: #742002).

  * libutouch-geis/backend/xcb/geis_xcb_backend.c (_dispatch_gesture):
    fixed offset calculation for grail touch properties

2011-03-22  Stephen M. Webb  <stephen.webb@canonical.com>

  Added a default back end (LP: #740311).

  * examples/geis2.c (dump_gesture_event): dumped more info
    (main): removed GEIS_INIT_UTOUCH_XCB from geis_new call
  * libutouch-geis/geis.c (geis_new): added GEIS_INIT_UTOUCH_XCB as default

2011-03-22  Stephen M. Webb  <stephen.webb@canonical.com>

  Passed the correct gesture_id to GEIS v1 callbacks (LP: #740284).

  * libutouch-geis/backend/xcb/geis_xcb_backend.c (_dispatch_gesture):
    Used the grail gesture_id as the frame_id.
  * testsuite/geistest/geistest.c (gesture_update): reported the gesture_id
    (gesture_start): reported the gesture_id
    (gesture_finish): reported the gesture_id

2011-03-22  Stephen M. Webb  <stephen.webb@canonical.com>

  Corrected the number of touches on a gesture event (LP: #737745).

  * libutouch-geis/backend/xcb/geis_xcb_backend.c (_dispatch_gesture):
    replaced geis_xcb_backend_touch_count() call with a calculation based on
    the number of touch properties passed from grail
  * libutouch-geis/backend/xcb/grail_gestures.c (geis_xcb_backend_touch_count):
    removed
  * libutouch-geis/backend/xcb/grail_gestures.h (geis_xcb_backend_touch_count):
    removed

2011-03-17  Stephen M. Webb  <stephen.webb@canonical.com>

  Added definitions for GEIS v1 gesture primitive types (LP: #737230).

  * include/geis/geis.h (GEIS_GESTURE_PRIMITIVE_DRAG): new symbol
    (GEIS_GESTURE_PRIMITIVE_PINCH): new symbol
    (GEIS_GESTURE_PRIMITIVE_ROTATE): new symbol
    (GEIS_GESTURE_PRIMITIVE_TAP): new symbol
  * libutouch-geis/backend/xcb/grail_gestures.c (s_grail_class_map):
    replaced utouch-grail symbolic constants with the new GEIS symbolic
    constants

2011-03-16  Stephen M. Webb  <stephen.webb@canonical.com>

  Refined the API documentation and added an examples directory.

  * doc/api.dox: new documentation file
  * doc/logo_x64.png: new logo image
  * doc/using_geis_v2.dox: new documentation file
  * examples/Makefile.am: examples subdirectory Makefile
  * examples/geis2.c: new example program
  * Makefile.am: added examples subdirectory
  * configure.ac: added examples subdirectory
  * doc/Doxyfile: tweaked Doxygen settings
  * include/geis/geis.h: complete API docs refinement

2011-03-16  Stephen M. Webb  <stephen.webb@canonical.com>

  Replaced device class with explicit attributes.

  * include/geis/geis.h (GEIS_DEVICE_CLASS_*) removed
    (GEIS_DEVICE_ATTRIBUTE_DIRECT_TOUCH): added 
    (GEIS_DEVICE_ATTRIBUTE_INDEPENDENT_TOUCH): added 
  * libutouch-geis/backend/xcb/geis_xcb_backend.c:
    (_map_xi2_mode_to_geis_device_attrs): replaced function
    _map_xi2_mode_to_geis_device_class
  * testsuite/geis2/check_device.c: added checks for new attributes

2011-03-16  Stephen M. Webb  <stephen.webb@canonical.com>

  Refinement of input device class handling.

  * include/geis/geis.h (GEIS_DEVICE_CLASS_UNKNOWN): new device class
    (GEIS_DEVICE_CLASS_TOUCH_MULTIFINGER): new device class
  * libutouch-geis/backend/xcb/geis_xcb_backend.c
    (_map_xi2_mode_to_geis_device_class): new function
    (_report_an_xcb_device): used it

2011-03-13  Stephen M. Webb  <stephen.webb@canonical.com>

  Initialized an uninitialized variable.

  * libutouch-geis/geis_v1.c (_v1_input_callback): initialized device_id 

2011-03-12  Stephen M. Webb  <stephen.webb@canonical.com>

  Added spcifying devices to geistest.

  * libutouch-geis/backend/xcb/geis_xcb_backend.c: added -d swicth
  * doc/geistest.1: documented its use

2011-03-12  Stephen M. Webb  <stephen.webb@canonical.com>

  Added proper device ID filtering for GEIS v1.

  * libutouch-geis/geis_v1.c (_subscribe_device): Added filter for device ID.

2011-03-11  Stephen M. Webb  <stephen.webb@canonical.com>

  Implement device enumeration (LP: #733296)

  * libutouch-geis/backend/xcb/geis_xcb_backend.c (_report_an_xcb_device): new
    (_report_xcb_devices): imlemented
  * libutouch-geis/geis_device.c (geis_device_new): made "id" an attr
    (geis_device_id): same
    (geis_device_add_attr): implemented missing function
  * libutouch-geis/geis_v1.c (_v1_input_callback): new function
    (geis_input_devices): implemented
  * testsuite/geis1/check_gesture_attrs.c: removed debug message
  * testsuite/geistest/geistest.c (input_device_added): added a dump

2011-03-11  Stephen M. Webb  <stephen.webb@canonical.com>

  Fix a lifetime issue with string attrs.

  * libutouch_ges/geis_attr.c (geis_attr_new): dup all strings
    (geis_attr_delete): free strings

2011-03-11  Stephen M. Webb  <stephen.webb@canonical.com>

  Added new device symbolic constants due to a change in the GEIS spec.

  * include/geis/geis.h (GEIS_DEVICE_ATTRIBUTE_CLASS): new constant
    (GEIS_DEVICE_ATTRIBUTE_TOUCHES): new constant
    (GEIS_DEVICE_CLASS_TOUCH_DIRECT): new constant
    (GEIS_DEVICE_CLASS_TOUCH_DEPENDENT): new constant
    (GEIS_DEVICE_CLASS_TOUCH_INDEPENDENT): new constant
    (GEIS_DEVICE_CLASS_TOUCH_PARTIAL): new constant
  * testsuite/geis2/check_device.c: added tests for the above

2011-03-11  Stephen M. Webb  <stephen.webb@canonical.com>

  Added a required symbolic constant for device events.

  * include/geis/geis.h (GEIS_EVENT_ATTRIBUTE_DEVICE): new symbol
    (GEIS_DEVICE_ATTRIBUTE_ID): new symbol
  * libutouch-geis/backend/test_fixture/geis_backend_test_fixture.c: used them
  * libutouch-geis/geis.c: used them
  * testsuite/geis2/check_device.c (geis_device_types): checked them
  * testsuite/geis2/check_subscription.c: used them

2011-03-08  Stephen M. Webb  <stephen.webb@canonical.com>

  Released utouch-geis v2.0.3.

  * configure.ac (AC_INIT): bumped version to 2.0.3

2011-03-08  Stephen M. Webb  <stephen.webb@canonical.com>

  Added fix for LP: #732104: re-order class event pump in v1 emulation.

  * libutouch-geis/geis_v1.c (_subscribe_device): added more diagnostic messages
    (geis_subscribe): re-ordered event pump to prime the class table

2011-03-08  Stephen M. Webb  <stephen.webb@canonical.com>

  Added a unit test and related infrastructure in the mock objects to reproduce
  LP: #732104.

  * libutouch-geis/backend/test_fixture/geis_backend_test_fixture.c:
    moved generation of gesture events to after subscription creation, added
    support for TOUCH filters
  * testsuite/geis1/check_gesture_attrs.c: added check for touch count,
    changed subscription from GEIS_ALL_GESTURES to an explicit list
  * testsuite/geis2/check_frame.c: activated subscription

2011-03-07  Stephen M. Webb  <stephen.webb@canonical.com>

  Released GEIS v2.0.2.

  * configure.ac (AC_INIT): bumped version to 2.0.2

2011-03-07  Stephen M. Webb  <stephen.webb@canonical.com>

  Renamed test case for LP: #728606

  * testsuite/geis1/check_gesture_attrs.c: renamed from
    testsuite/geis1/check_lp728606.c
  * testsuite/geis1/Makefile.am: renamed source file
    added -Werror to CFLAGS
  * testsuite/geis1/check_geis1_api.c: renamed test

2011-03-07  Stephen M. Webb  <stephen.webb@canonical.com>

  Added regression test for LP: #728606

  * testsuite/geis1/check_lp728606.c: new test suite
  * libutouch-geis/backend/test_fixture/geis_backend_test_fixture.c
    (_create_gesture_events): add some basic gesture attrs to mock events
  * libutouch-geis/geis_v1.c (geis_init): tweaked mock object creation
    (geis_finish): reset global Geis object
    (geis_subscribe): relocated class event pump
  * testsuite/geis1/Makefile.am: added new test suite source
  * testsuite/geis1/check_geis1_api.c: ran new test suite

2011-03-07  Stephen M. Webb  <stephen.webb@canonical.com>

  Enabled GEIS v1 for basic API unit testing.

  * testsuite/geis1/check_instance.c: new test suite
  * libutouch-geis/geis_v1.c  (_generate_subscription_name): handled NULL XCB info
    (geis_init): handled request for mock back end
  * testsuite/geis1/Makefile.am: added new source file
  * testsuite/geis1/check_geis1_api.c: ran new test suite

2011-03-07  Stephen M. Webb  <stephen.webb@canonical.com>

  Re-added GEIS v1 API testing.

  * testsuite/geis1/check_geis_internals.c: removed
  * testsuite/geis1/check_instance_table.c: removed
  * testsuite/geis1/check_geis1_api.c: new file
  * configure.ac (AC_CONFIG_FILES): added testsuite.geis1/Makefile
  * testsuite/Makefile.am (SUBDIRS): added geis1
  * testsuite/geis1/Makefile.am: Removed old unit tests, added check_geis1_api

2011-03-03  Stephen M. Webb  <stephen.webb@canonical.com>

  Fixed incorrect data conversion in GEIS v1 implementation (LP: #728606)

  * libutouch_geis/geis_v1 (_map_frame_to_attrs): put float value in the float
    member of the attr union to avoid unwanted coercion.

2011-02-28  Stephen M. Webb  <stephen.webb@canonical.com>

  Added a graceful exit to the geistest tool.

  * testsuite/geistest/geistest.c (main): added watch on stdin for exit
  * doc/geistest.1: mentioned how to exit gracefully

2011-02-28  Stephen M. Webb  <stephen.webb@canonical.com>

  Fixed logic in a string-to-boolean conversion.

  * libutouch-geis/geis_attr.c (geis_attr_value_to_boolean): fixed logic

2011-02-27  Stephen M. Webb  <stephen.webb@canonical.com>

  Fixed memory leaks in GEIS v2 subscriptions.

  * libutouch-geis/backend/xcb/geis_xcb_backend.c (_finalize): closed X display
  * libutouch-geis/geis.c (geis_new): reffed the new geis object
    (geis_delete): invalidated all outstanding subscriptions
  * libutouch-geis/geis_backend.c: fixed debug message to avoid a bad dereference
  * libutouch-geis/geis_filter.c: only unref ther geis object on destruction
  * libutouch-geis/geis_filter_term.c: free the bag store on deletion
  * libutouch-geis/geis_subscription.h (geis_subscription_bag_invalidate): new
    (geis_subscription_invalidate): new
  * libutouch-geis/geis_subscription.c: imlemented new functions
    (_subscription_destroy): handled destruction in invalided state
  * libutouch-geis/geis_v1.c (geis_finish): deleted window filter

2011-02-23  Stephen M. Webb  <stephen.webb@canonical.com>

  Fixed memory leaks in GEIS v2 group and touch sets.

  * libutouch-geis/geis_frame.c (geis_frameset_delete): fixed loop condition
    (geis_frame_delete): freed touches
  * libutouch-geis/geis_group.c (geis_groupset_delete): fixed loop condition
  * libutouch-geis/geis_touch.c (geis_touchset_delete): fixed loop condition

2011-02-23  Stephen M. Webb  <stephen.webb@canonical.com>

  Fixed a memory leak in GEIS v2 gesture events.

  * libutouch-geis/geis_attr.h (GeisAttrDestructor): new type
    (geis_attr_set_destructor): new function
  * libutouch-geis/geis_attr.c (geis_attr_set_destructor): implemented it
    (attr_value): named union for ISO C compatibility
  * libutouch-geis/backend/xcb/geis_xcb_backend.c (_dispatch_gesture): added
    destructors to groupset and touchset attrs

2011-02-22  Stephen M. Webb  <stephen.webb@canonical.com>

  Released version 2.0.1.

  * configure.ac (AC_INIT): bumped package version to 2.0.1

2011-02-22  Stephen M. Webb  <stephen.webb@canonical.com>

  Used standardized LGPL-v3 license text.

  * COPYING: refreshed with standardized text.

2011-02-22  Stephen M. Webb  <stephen.webb@canonical.com>

  Restored missing GEIS v1 symbols and fixed a segfault in libgrip.

  * libutouch-geis/geis_v1.c (struct _GeisInstance): added window_filter field
    (geis_init): initialized window_filter field
    (_subscribe_device): used window_filter field from instance
    (geis_configuration_set_value): added missing GEIS v1 function
    (geis_unsubscribe): added missing GEIS v1 function

2011-02-22  Stephen M. Webb  <stephen.webb@canonical.com>

  Release version 2.0.0

  * configure.ac (AC_INIT): bumped package version to 2.0.0
  * libutouch-geis/Makefile.am (libutouch_geis_la_LDFLAGS): bumped version-info
    to 3:0:2 (gives .so version 1.2.0) to reflect the addition of a new interface

2011-02-21  Stephen M. Webb  <stephen.webb@canonical.com>

  Added support for setting the XCB sysflg through the GEIS v1 interface.

  * include/geis/geis.h (GEIS_GESTURE_TYPE_SYSTEM): new gesture type
  * libutouch-geis/geis_subscription.h
    (geis_subscription_set_flags): new function
  * libutouch-geis/geis_subscription.c: implemented it
  * libutouch-geis/geis_v1.c (geis_subscribe): used it

2011-02-20  Stephen M. Webb  <stephen.webb@canonical.com>

  Cranked up warning level on testsuite and fixed (most of) the consequent
  warnings.

  * testsuite/geis2/check_attr.c: fxied compile-time warnings
  * testsuite/geis2/check_class.c: same
  * testsuite/geis2/check_device.c: same
  * testsuite/geis2/check_event.c: same
  * testsuite/geis2/check_filter.c: ditto
  * testsuite/geis2/check_frame.c: same
  * testsuite/geis2/check_geis2_api.c: same
  * testsuite/geis2/check_geis_new.c: same
  * testsuite/geis2/check_general_types.c: same
  * testsuite/geis2/check_region.c: same
  * testsuite/libutouch-geis/check_attr.c: same
  * testsuite/libutouch-geis/check_backend_multiplexor.c: same
  * testsuite/libutouch-geis/check_class.c: same
  * testsuite/libutouch-geis/check_device.c: idem
  * testsuite/libutouch-geis/check_error_reporting.c: same
  * testsuite/libutouch-geis/check_filter.c: yep
  * testsuite/libutouch-geis/check_geis2_internals.c: you guessed it
  * testsuite/libutouch-geis/check_geis_private.c: uh-huh

2011-02-19  Stephen M. Webb  <stephen.webb@canonical.com>

  Fixed failed "make distcheck".

  * libutouch-geis/Makefile.am: added geis_atomic.h
  * libutouch-geis/server/Makefile.am: added geis_dbus.h

2011-02-19  Stephen M. Webb  <stephen.webb@canonical.com>

  Removed old crufty unused source code.

  * libgeis-dbus: removed directory
  * libutouch-geis-xcb: removed directory

2011-02-17  Stephen M. Webb  <stephen.webb@canonical.com>

  Added proper support for region filters in XCB.

  * libutouch-geis/backend/xcb/geis_xcb_backend.c
    (XcbGestureSub): added windows and window_count fields
    (_translate_device_term_to_xcb): eliminated duplicates
    (_translate_region_term_to_xcb): new function
    (_subscribe): used new fields/function
  * libutouch-geis/geis_v1.c (geis_init): added region filter for window

2011-02-17  Stephen M. Webb  <stephen.webb@canonical.com>

  Added a check for the maximum number of device terms.

  * libutouch-geis/backend/xcb/geis_xcb_backend.c
  (_translate_device_term_to_xcb): Added MAX_NUM_DEVICES and checked it.

2011-02-17  Stephen M. Webb  <stephen.webb@canonical.com>

  Added proper support for continuations and system gestures.

  * libutouch-geis/backend/xcb/geis_xcb_backend.c
    (_translate_class_term_to_xcb): fixed min/max logic
    (_translate_filter_to_xcb): added subscription parameter,
    called new functions,
    ORed masks from different filters on same subscription
    (_subscribe): removed special case for no class filters
  * libutouch-geis/backend/xcb/grail_gestures.h
    (geis_xcb_backend_create_gesture_bitmask): removed and replaced with...
    (geis_xcb_backend_gesture_bitmask_filter_class): new function
    (geis_xcb_backend_gesture_bitmask_filter_touches): new function
    (geis_xcb_backend_gesture_bitmask_init): new function
  * libutouch-geis/backend/xcb/grail_gestures.c: implemented the above new
  * functions
  * libutouch-geis/geis_subscription.h (geis_subscription_flags): new function
  * libutouch-geis/geis_subscription.c: implemented it
  * testsuite/geistest/geistest.c: switched from 'all' to a set of gestures

2011-02-17  Stephen M. Webb  <stephen.webb@canonical.com>

  Added the ability to fetch a filter from a subscription and clone it.

  * include/geis/geis.h (geis_filter_clone): new function
    (geis_subscription_filter_by_name): new function
  * libutouch-geis/geis_filter.h (geis_filter_bag_filter_by_name): new function
  * libutouch-geis/geis_filter.c (geis_filter_bag_filter_by_name): implemented
    (_filter_new_empty): new function
    (geis_filter_new): used it
    (geis_filter_clone): implemented it
    (geis_filter_delete): unreffed geis
  * libutouch-geis/geis_filter_term.h (geis_filter_term_bag_clone): new function
  * libutouch-geis/geis_filter_term.c (geis_filter_term_bag_clone): implemented
  * libutouch-geis/geis_subscription.c (geis_subscription_filter_by_name): impl
  * libutouch-geis/geis_v1.c (_subscribe): used new functions
  * libutouch-geis/libutouch-geis.ver (geis_filter_clone): new exported symbol
    (geis_subscription_filter_by_name): new exported symbol
  * testsuite/geis2/Makefile.am: added -Wall -Wextra CFLAGS
  * testsuite/geis2/check_filter.c: new test case, silenced warnings
  * testsuite/geis2/check_subscription.c: new test case, silenced warnings
  * testsuite/libutouch-geis/Makefile.am: added -Wall -Wextra CFLAGS

2011-02-17  Stephen M. Webb  <stephen.webb@canonical.com>

  Reference counting fixes:  added geis_atomic functions, added reference
  counting semantics to Geis and GeisFilterTerm modules.

  * libutouch-geis/geis_atomic.h: new file
  * libutouch-geis/geis.c (_geis_destroy): new function
    (geis_ref): new function
    (geis_unref): new function
    (geis_delete): used new functions
  * libutouch-geis/geis_class.c (geis_gesture_class_ref): used new atomics
    (geis_gesture_class_unref): same
  * libutouch-geis/geis_device.c (geis_device_ref): used new atomics
    (geis_device_unref): same
  * libutouch-geis/geis_filter.c (geis_filter_ref): used new atomics
    (geis_filter_unref): same
    (geis_filter_bag_insert): moved ref call to after all possible errors
  * libutouch-geis/geis_filter.h (geis_filter_ref): changed return type
  * libutouch-geis/geis_filter_term.c (struct _GeisFilterTerm): added refcount
    (geis_filter_term_ref): new function
    (geis_filter_term_unref): new function
    (geis_filter_term_new): called geis_filter_term_ref
    (geis_filter_term_delete): made static and renamed _filter_term_destroy
  * libutouch-geis/geis_filter_term.h: prototyped new functions
  * libutouch-geis/geis_private.h: prototyped new functions
  * libutouch-geis/geis_region.c: used new atomics
  * libutouch-geis/geis_subscription.c (_subscription_ref): new static function
    (_subscription_unref): new static function
    (geis_subscription_bag_empty): new function
    (geis_subscription_bag_new): used new function
    (geis_subscription_bag_delete): used new function
    (geis_subscription_bag_remov): used new function
  * libutouch-geis/geis_subscription.h: prototyped new functions

 2011-02-11  Stephen M. Webb  <stephen.webb@canonical.com>

  Implemented class and device filters properly.

  * libutouch-geis/backend/xcb/geis_xcb_backend.c (struct _XcbGestureSub):
    added new fields
    (_translate_class_filter_to_xcb): removed function
    (_translate_device_term_to_xcb): new function
    (_translate_class_term_to_xcb): new function
    (_translate_filter_to_xcb): new function
    (_subscribe): replaced old functions with new, restructired filter loop
  * libutouch-geis/backend/xcb/grail_gestures.c: silenced compiler warnings
  * libutouch-geis/geis_filter.c: replace by_facility functions
  * libutouch-geis/geis_filter.h: same
  * libutouch-geis/geis_filter_term.c: same
  * libutouch-geis/geis_filter_term.h: same
  * libutouch-geis/backend/test_fixture/geis_backend_test_fixture.c:
    replaced filter by_facility calls.

 2011-02-09  Stephen M. Webb  <stephen.webb@canonical.com>

  Fixed a memory allocation problem during error reporting.

  * libutouch-geis/geis_error.c (geis_error_stack_push): fixed realloc size

 2011-02-05  Stephen M. Webb  <stephen.webb@canonical.com>

  Fixed a memory leak in the XCB back end.

  * libutouch-geis/backend/xcb/geis_xcb_backend.c (_xcb_dispatch): freed XCB
   event

 2011-02-04  Stephen M. Webb  <stephen.webb@canonical.com>

  Reimplement GEIS v1.0 on top of GEIS v2.0, Part III (touch attrs).

  * include/geis/geis.h (GEIS_TOUCH_ATTRIBUTE_ID): new symbol
    (GEIS_TOUCH_ATTRIBUTE_X): new symbol
    (GEIS_TOUCH_ATTRIBUTE_Y): new symbol
  * libutouch-geis/backend/xcb/geis_xcb_backend.c (_dispatch_gesture):
    added touch mapping
  * libutouch-geis/geis_v1.c (_map_frame_to_attrs): mapped touches into
    gesture attrs

 2011-02-02  Stephen M. Webb  <stephen.webb@canonical.com>

  Reimplement GEIS v1.0 on top of GEIS v2.0, Part II (gesture attrs).

  * libutouch-geis/backend/xcb/grail_gestures.h
    (geis_xcb_backend_map_grail_attrs): new function
  * libutouch-geis/backend/xcb/grail_gestures.c: implemented it
  * libutouch-geis/backend/xcb/geis_xcb_backend.c (_dispatch_gesture):
    called it
  * libutouch-geis/geis_attr.c: fixed a memory leak
  * libutouch-geis/geis_v1.c (_map_frame_to_attrs): new function
    (_v1_event_callback): called it

 2011-01-31  Stephen M. Webb  <stephen.webb@canonical.com>

  Reimplement GEIS v1.0 on top of GEIS v2.0, Part I (basic gesture events).

  * libutouch-geis/geis_v1.c: new file
  * configure.ac: removed refs to libutouch-geis-xcb and testsuite/geis1
  * libutouch-geis/Makefile.am: removed refs to libutouch-geis-xcb
  * libutouch-geis/backend/xcb/geis_xcb_backend.c (_dispatch_gesture):
    added basic group, frame, and touch attrs to gesture events
  * testsuite/Makefile.am: removed refs to testsuite/geis1

 2011-01-28  Stephen M. Webb  <stephen.webb@canonical.com>

  Implemented basic gesture subscriptions through the XCB back end.

  * libutouch-geis/backend/xcb/geis_xcb_backend.c (struct _XcbGestureSub): new
    (_dispatch_gesture): new function
    (_xcb_dispatch): called it
    (_subscribe): initialized XcbGestureSub
    (_unsubscribe): destroyed XcbGestureSub
  * libutouch-geis/backend/xcb/grail_gestures.h
    (geis_xcb_backend_primitive_class): new function
    (geis_xcb_backend_touch_count): implemented new functions
  * libutouch-geis/geis_subscription.h (geis_subscription_pdata): new function
    (geis_subscription_set_pdata): new function
  * libutouch-geis/geis_subscription.c: implemented new functions

 2011-01-27  Stephen M. Webb  <stephen.webb@canonical.com>

  Added GEIS v2.0 gesture module, part V (refined frame-touch interaction)

  * include/geis/geis.h (GeisTouchId) new type
    (geis_touchset_touch_by_id(): new function
    (geis_frame_touchid_count(): renamed from geis_frame_touch_count
    (geis_frame_touchid): renamed from geis_frame_touch
  * libutouch-geis/backend/test_fixture/geis_backend_test_fixture.c
    (_create_gesture_events): called geis_frame_add_touchid
  * libutouch-geis/geis_frame.c (struct _GeisFrame): added touch fields
    (geis_frame_new): initialized touch fields
    (geis_frame_delete): destroyed touch fields
  * libutouch-geis/geis_frame.h (geis_frame_add_touchid): new fucntion
  * libutouch-geis/geis_touch.c: implemented new function
  * libutouch-geis/geis_touch.h (geis_touch_new): changed parameter type
  * libutouch-geis/libutouch-geis.ver: added/renamed symbols
  * testsuite/geis2/check_frame.c: expanded test case to include frame-touch

 2011-01-27  Stephen M. Webb  <stephen.webb@canonical.com>

  Added GEIS v2.0 gesture module, part IV (frame implementation)

  * libutouch-geis/geis_frame.c: new file
  * libutouch-geis/geis_frame.h: new file
  * libutouch-geis/Makefile.am: added new files
  * libutouch-geis/backend/test_fixture/geis_backend_test_fixture.c
    (_create_gesture_events): added frame to injected event
  * libutouch-geis/geis_group.c (struct _GeisGroup): added frameset field
    (geis_groupset_delete): cleaned out container
    (geis_group_new): initialized frameset member
    (geis_group_delete): destroyed frameset member
    (geis_group_insert_frame): added function implementation
    (geis_group_frame_count): added function implementation
    (geis_group_frame): added function implementation
    (geis_group_reject): added function stub
  * libutouch-geis/geis_group.h (geis_group_insert_frame): new function
  * libutouch-geis/geis_touch.c (geis_touchset_delete): cleaned out container
    (geis_touch_new): initialized attr_bag member
    (geis_touch_delete): destroyed attr_bag member
  * testsuite/geis2/check_frame.c: added new checks for frames

 2011-01-27  Stephen M. Webb  <stephen.webb@canonical.com>

  Added missing callback registration function.

  * libutouch-geis/geis.c (geis_register_device_callback): implemented function

 2011-01-27  Stephen M. Webb  <stephen.webb@canonical.com>

  Added GEIS v2.0 gesture module, part III (touch/touchset implementation)

  * libutouch-geis/geis_touch.c: new file
  * libutouch-geis/geis_touch.h: new file
  * libutouch-geis/Makefile.am: added new files
  * libutouch-geis/backend/test_fixture/geis_backend_test_fixture.c
    (_create_gesture_events): added touch set to injected event
  * testsuite/geis2/check_frame.c: added test case

 2011-01-26  Stephen M. Webb  <stephen.webb@canonical.com>

  Added GEIS v2.0 gesture module, part II (group/groupset implementation)

  * libutouch-geis/geis_group.c: new file
  * libutouch-geis/geis_group.h: new file
  * libutouch-geis/Makefile.am: added new files
  * libutouch-geis/backend/test_fixture/geis_backend_test_fixture.c
    (_create_gesture_events): new function
    (geis_backend_new_test_fixture): called it
  * testsuite/geis2/check_class.c(receive_events): allowed for multiple events
  * testsuite/geis2/check_device.c(receive_events): allowed for multiple events
  * testsuite/geis2/check_frame.c (receive_events): new test case
  * testsuite/geis2/check_subscription.c (receive_events): fixed leak

 2011-01-25  Stephen M. Webb  <stephen.webb@canonical.com>

  Added GEIS v2.0 gesture module, part I (public API).

  * testsuite/geis2/check_frame.c: new test suite
  * include/geis/geis.h (GeisGroup): new type
    (GeisGroupSet): new type
    (GeisTouch): new type
    (GeisTouchSet): new type
    (GeisFrame): new type
    (GEIS_EVENT_ATTRIBUTE_GROUPSET): new symbol
    (GEIS_EVENT_ATTRIBUTE_TOUCHSET): new symbol
    (geis_groupset_group_count): new function
    (geis_groupset_group): new function
    (geis_group_id): new function
    (geis_group_frame_count): new function
    (geis_group_frame): new function
    (geis_group_reject): new function
    (geis_touchset_touch_count): new function
    (geis_touchset_touch): new function
    (geis_touch_id): new function
    (geis_touch_attr_count): new function
    (geis_touch_attr): new function
    (geis_touch_attr_by_name): new function
    (geis_frame_id): new function
    (geis_frame_is_class): new function
    (geis_frame_attr_count): new function
    (geis_frame_attr): new function
    (geis_frame_attr_by_name): new function
    (geis_frame_matrix): new function
    (geis_frame_touch_count): new function
    (geis_frame_touch): new function
    (geis_gesture_reject): new function
  * libutouch-geis/libutouch-geis.ver: added new symbols
  * testsuite/geis2/Makefile.am: added new test suite file
  * testsuite/geis2/check_geis2_api.c: referenced new test suite

 2011-01-10  Stephen M. Webb  <stephen.webb@canonical.com>
 
  Added gesture class events to XCB back end.

  * libutouch-geis/backend/xcb/grail_gestures.c: new file
  * libutouch-geis/backend/xcb/grail_gestures.h: new file
  * libutouch-geis/backend/xcb/Makefile.am: added new files
  * libutouch-geis/backend/xcb/geis_xcb_backend.c (_report_xcb_devices): new
    (_report_grail_glasses): new 
    (geis_xcb_backend_new: called new functions

2011-01-07  Stephen M. Webb  <stephen.webb@canonical.com>

  Added XCB back end convenience library.

  * libutouch-geis/backend/xcb/geis_xcb_backend.c: new file
  * libutouch-geis/backend/xcb/geis_xcb_backend.h: new file
  * libutouch-geis/backend/xcb/Makefile.am: added rules for new library
  * include/geis/geis.h (GEIS_INIT_UTOUCH_XCB): new init arg symbol
  * libutouch-geis/geis.c: used it
  * libutouch-geis/Makefile.am: added XCB protocol library
  * libutouch-geis-xcb/Makefile.am: removed XCB protocol library
  * testsuite/libutouch-geis/Makefile.am: added XCB runtime libraries

2011-01-07  Stephen M. Webb  <stephen.webb@canonical.com>

  Refactored XCB protocol library into a separate convenience lib.

  * libs/Makefile.am: new directory
  * libs/xcb/Makefile.am: new subproject
  * libs/xcb/c-client.xsl: renamed from libutouch-geis-xcb/c-client.xsl
  * libs/xcb/c_client.py: renamed from libutouch-geis-xcb/c_client.py
  * libs/xcb/xcb_gesture.xml.in: was libutouch-geis-xcb/xcb_gesture.xml.in
  * Makefile.am: added new subproject
  * configure.ac: added new subproject
  * libutouch-geis-xcb/Makefile.am: moved XCB protocol to libs/xcb subproject

2011-01-07  Stephen M. Webb  <stephen.webb@canonical.com>

  Added XCB back end subproject to libutouch-geis.

  * libutouch-geis/backend/xcb: new subproject
  * libutouch-geis/backend/xcb/Makefile.am: new file.
  * Makefile.am: updated copyright
  * configure.ac: added new subproject
  * libutouch-geis/backend/Makefile.am: added new subproject

2011-01-06  Stephen M. Webb  <stephen.webb@canonical.com>

  Added Geis v2.0 gesture class implementation (part 2, utouch internals)

  * testsuite/libutouch-geis/check_class.c: new test suite
  * include/geis/geis.h: fixed GEIS_FILTER_CLASS
  * libutouch-geis/backend/test_fixture/geis_backend_test_fixture.c
    (_create_test_classes): new function
  * libutouch-geis/backend/test_fixture/geis_backend_test_fixture.h
    (geis_backend_new_test_fixture): added track_classes parameter
  * libutouch-geis/geis.c (struct _Geis): added new fields
    (_class_event_handler): implemented event handling
    (geis_new_empty): initialized new fields
    (_set_valist): handled GEIS_INIT_TRACK_GESTURE_CLASSES
    (geis_get_class_attr_type): new function
  * libutouch-geis/geis_class.h (GeisGestureClassBag): new data structure
    (geis_gesture_class_bag_new): new function
    (geis_gesture_class_bag_delete): new function
    (geis_gesture_class_bag_count): new function
    (geis_gesture_class_bag_gesture_class): new function
    (geis_gesture_class_bag_insert): new function
    (geis_gesture_class_bag_remove): new function
  * libutouch-geis/geis_class.c: implemented above new functions
  * libutouch-geis/geis_filter.c (_facility_is_valid): fixed facility name
  * libutouch-geis/geis_private.h (geis_get_class_attr_type): new function
  * testsuite/geis2/check_filter.c: fixed facility name
  * testsuite/geis2/check_subscription.c: added check for class subscription
  * testsuite/libutouch-geis/Makefile.am: added new test suite file
  * testsuite/libutouch-geis/check_geis2_internals.c: called new test suite

2011-01-06  Stephen M. Webb  <stephen.webb@canonical.com>

  Added Geis v2.0 gesture class implementation (part 1, basic API)

  * libutouch-geis/geis_class.c: new file
  * libutouch-geis/geis_class.h: new file
  * libutouch-geis/Makefile.am: added new source files
  * libutouch-geis/geis.c (struct _Geis): added new class callback fields
    (_class_event_handler): new function
    (_input_event_handler): added case for gesture class events
    (geis_register_class_callback): implemented function
  * include/geis/geis.h (geis_gesture_class_ref): adjusted return type
    (geis_gesture_class_unref): same

2011-01-06  Stephen M. Webb  <stephen.webb@canonical.com>

  Added GEIS v2.0 gesture class API

  * testsuite/geis2/check_class.c: new test suite
  * include/geis/geis.h (GEIS_INIT_TRACK_GESTURE_CLASSES): new init ath
    (GEIS_EVENT_CLASS_AVAILABLE): new event type
    (GEIS_EVENT_CLASS_CHANGED): new event type
    (GEIS_EVENT_CLASS_UNAVAILABLE): new event type
    (GeisGestureClass): new opaque type
    (GEIS_CLASS_ATTRIBUTE_NAME): new attribute name
    (GEIS_CLASS_ATTRIBUTE_ID): new attribute name
    (GEIS_EVENT_ATTRIBUTE_CLASS): new attribute name
    (geis_register_class_callback): new function
    (geis_gesture_class_ref): new function
    (geis_gesture_class_unref): new function
    (geis_gesture_class_name): new function
    (geis_gesture_class_id): new function
    (geis_gesture_class_attr_count): new function
    (geis_gesture_class_attr): new function
  * libutouch-geis/libutouch-geis.ver: added new exported symbols
  * testsuite/geis2/Makefile.am: build new test suite
  * testsuite/geis2/check_event.c: changed event type names
  * testsuite/geis2/check_geis2_api.c: used new test suite
  * testsuite/geis2/check_geis_new.c: changed init constant names

2011-01-05  Stephen M. Webb  <stephen.webb@canonical.com>

  Minor tweaks.

  * include/geis/geis.h: fixed typos in comments
    (GEIS_DEVICE_ATTRIBUTE_NAME): new constant
  * libutouch-geis/geis_device.c: used new constant instead of hard-coded string
  * testsuite/geis2/check_subscription.c: same

2011-01-05  Stephen M. Webb  <stephen.webb@canonical.com>

  Added GEIS v2.0 filter implementation (part 4, device subscription)

  * libutouch-geis/backend/test_fixture/geis_backend_test_fixture.c
    (_subscription): add debug output to the test fixture
  * libutouch-geis/geis_device.c: made name an attr for filtering on
  * libutouch-geis/geis_filter.h
    (geis_filter_term_by_facility_count): new function
    (geis_filter_term_by_facility): new function
  * libutouch-geis/geis_filter.c: implemented the above new functions
  * libutouch-geis/geis_subscription.h
    (geis_subscription_filter_count): new function
    (geis_subscription_filter): new function
  * libutouch-geis/geis_subscription.c: implemented the above new functions
  * testsuite/geis2/check_subscription.c (device_filter): new test case
 
2011-01-05  Stephen M. Webb  <stephen.webb@canonical.com>

  Added group test for back end device creation.

  * libutouch-geis/backend/test_fixture/geis_backend_test_fixture.c
    (_create_test_devices): new function
    (geis_backend_new_test_fixture): used it
  * libutouch-geis/backend/test_fixture/geis_backend_test_fixture.h
    (geis_backend_new_test_fixture): added track_devices parameter
  * libutouch-geis/geis.c (_set_valist): refactored to propagate init args
  * testsuite/geis2/check_device.c: new test case

2011-01-05  Stephen M. Webb  <stephen.webb@canonical.com>

  Marked missing geis_event_* symbols as exported.

  * libutouch-geis/libutouch-geis.ver (geis_event_attr): exported
    (geis_event_attr_by_name): exported
    (geis_event_attr_count): exported
    (geis_event_delete): exported
    (geis_event_type): exported

2011-01-05  Stephen M. Webb  <stephen.webb@canonical.com>

  Moved back end test fixture into a subproject.

  * libutouch-geis/backend/test_fixture: new subproject
  * libutouch-geis/backend/test_fixture/Makefile.am: new file
  * libutouch-geis/backend/test_fixture/geis_backend_test_fixture.c: renamed
    from libutouch-geis/geis_backend_test_fixture.c
  * libutouch-geis/backend/test_fixture/geis_backend_test_fixture.h: renamed
    from  libutouch-geis/geis_backend_test_fixture.h 
  * configure.ac (AC_OUTPUT): added libutouch-geis/backend/test_fixture/Makefile
  * libutouch-geis/Makefile.am: linked in new subproject
  * libutouch-geis/backend/Makefile.am: added new subproject
  * libutouch-geis/geis.c: changed header qualification

2011-01-05  Stephen M. Webb  <stephen.webb@canonical.com>

  Added device cacheing.

  * libutouch-geis/geis_private.h (geis_get_device_attr_type): new function
  * libutouch-geis/geis.c (struct _Geis): added devices field
    (_device_event_handler): new function
    (_input_event_handler): dispatched BE device events
    (geis_new_empty): initialized devices field
    (geis_new_delete): destroyed devices field
  * libutouch-geis/geis_filter.c (_get_attr_type_for_facility): implemented for
    the device facility

2011-01-05  Stephen M. Webb  <stephen.webb@canonical.com>

  Fixed failure-mode return value from geis_filter_term_bag_new

  * libutouch-geis/geis_filter_term.c (geis_filter_term_bag_new): returned
    NULL on failure

2011-01-05  Stephen M. Webb  <stephen.webb@canonical.com>

  Added missing geis_attr_value_to_pointer.

  * libutouch-geis/geis_attr.c (geis_attr_value_to_pointer): new function
    (geis_attr_value_to_string): added case to handle GEIS_ATTR_TYPE_POINTER

2011-01-03  Stephen M. Webb  <stephen.webb@canonical.com>

  Added GEIS v2.0 filter implementation (part 3, filter terms)

  * libutouch-geis/geis_filter_term.c: new file
  * libutouch-geis/geis_filter_term.h: new file
  * include/geis/geis.h (GeisFilterOperation): fixed typo
  * libutouch-geis/Makefile.am: added new files
  * libutouch-geis/geis_filter.c (geis_filter_add_term): implemented function
    (_facility_is_valid): new function
    (_operation_is_valid): new function
    (_get_attr_for_facility): new function

2011-01-01  Stephen M. Webb  <stephen.webb@canonical.com>

  Added GEIS v2.0 filter implementation (part 2)

  * libutouch-geis/geis_filter.c: fixed refcounting on bag insertion
  * libutouch-geis/geis_subscription.c
    (geis_subscription_add_filter): implemented stubbed-out function
    (geis_subscription_remove_filter): implemented stubbed-out function
  * testsuite/geis2/check_subscription.c: new test case

2010-12-20  Stephen M. Webb  <stephen.webb@canonical.com>

  Added GEIS v2.0 filter implementation (part 1)

  * testsuite/libutouch-geis/check_filter.c: new test suite
  * libutouch-geis/geis_filter.h (GeisFilterBag): new data structure
    (geis_filter_bag_new): new function
    (geis_filter_bag_delete): new function
    (geis_filter_bag_count): new function
    (geis_filter_bag_filter): new function
    (geis_filter_bag_insert): new function
    (geis_filter_bag_remove): new function
    (geis_filter_ref): new function
    (geis_filter_unref): new function
  * libutouch-geis/geis_filter.c: implemented new functions
  * testsuite/libutouch-geis/Makefile.am: added new test suite
  * testsuite/libutouch-geis/check_geis2_internals.c: added new test suite

2010-12-29  Stephen M. Webb  <stephen.webb@canonical.com>

  Added GEIS v2.0 filter API

  * libutouch-geis/geis_filter.c: new file
  * libutouch-geis/geis_filter.h: new file
  * testsuite/geis2/check_filter.c: new test suite
  * include/geis/geis.h (GeisFilter): new type
    (GeisFilterFacility): new enumeration
    (GeisFilterOperation): new enumeration
    (gei_filter_new): new function
    (geis_filter_delete): new function
    (geis_filter_name): new function
    (geis_filter_add_term): new function
  * libutouch-geis/Makefile.am: added new files
  * libutouch-geis/libutouch-geis.ver: added new symbols
  * testsuite/geis2/Makefile.am: added new test suite
  * testsuite/geis2/check_geis2_api.c: added new test suite

2010-12-29  Stephen M. Webb  <stephen.webb@canonical.com>

  Added backend subdirectory to libutouch-geis.

  * libutouch-geis/backend/Makefile.am: new file
  * configure.ac (AC_OUTPUT): added libutouch-geis/backend/Makefile
  * libutouch-geis/Makefile.am (SUBDORS): added backend

2010-12-29  Stephen M. Webb  <stephen.webb@canonical.com>

  Moved geis/geisimpl.h into GEIS v2.0 sources.

  * libutouch-geis/geis/geisimple.h: renamed from libutouch-geis-xcb/geis
  * libutouch-geis-xcb/Makefile.am: changed header search path
  * libutouch-geis/Makefile.am: changed header search path
  * testsuite/geis1/Makefile.am: changed header search path
  * testsuite/geis2/Makefile.am: changed header search path
  * testsuite/geistest/Makefile.am: changed header search path
  * testsuite/libutouch-geis/Makefile.am: changed header search path

2010-12-20  Stephen M. Webb  <stephen.webb@canonical.com>

  Added GEIS v2.0 input device implementation.

  * libutouch-geis/geis_device.h (GeisDeviceBag): new type
    (geis_device_bag_new): new function
    (geis_device_bag_delete): new function
    (geis_device_bag_count): new function
    (geis_device_bag_device): new function
    (geis_device_bag_insert): new function
    (geis_device_bag_remove): new function
  * libutouch-geis/geis_device.c: implemented new functions
  * testsuite/libutouch-geis/check_device.c: new test suite
  * testsuite/libutouch-geis/Makefile.am: added new test suite
  * testsuite/libutouch-geis/check_geis2_internals.c: added new test suite

2010-12-20  Stephen M. Webb  <stephen.webb@canonical.com>

  Added GEIS v2.0 input device API

  * libutouch-geis/geis_device.c: new file
  * libutouch-geis/geis_device.h: new file
  * testsuite/geis2/check_device.c: new test suite
  * include/geis/geis.h (GeisDevice): new type
    (geis_register_device_callback): new function
    (geis_device_ref): new function
    (geis_device_unref): new function
    (geis_device_name): new function
    (geis_device_id): new function
    (geis_device_attr_count): new function
    (geis_device_attr): new function
  * libutouch-geis/Makefile.am: added new files
  * libutouch-geis/libutouch-geis.ver: added new API symbols
  * testsuite/geis2/Makefile.am: added new test suite
  * testsuite/geis2/check_geis2_api.c: added new test suite

2010-12-20  Stephen M. Webb  <stephen.webb@canonical.com>

  Updates to match new GEIS v2.0 spec release of 2010.12.20.
  - added a pointer type to the GEIS attr module
  - added additional required GEIS initialization arguments
  - event type enumarant name changes

  * testsuite/geis2/check_attr.c: new test suite
  * testsuite/geis2/check_event.c: new test suite
  * include/geis/geis.h (GEIS_INIT_TRACK_DEVICES): new init arg
    (GEIS_INIT_TRACK_GESTURE_TYPES): new init arg
    (GeisAttrType): added GEIS_ATTR_TYPE_POINTER enumerant
    (geis_attr_value_to_pointer): new function
    (GeisEventType): added new enumerants
  * libutouch-geis-xcb/geis/geisimpl.h: added GeisPointer type
  * libutouch-geis/Makefile.am: added libutouch-geis-xcb to header search path
  * libutouch-geis/libutouch-geis.ver (geis_attr_value_to_pointer): new symbol
  * testsuite/geis2/Makefile.am: added new test suites
  * testsuite/geis2/check_geis2_api.c: added new test suites
  * testsuite/geis2/check_geis_new.c: added new test case for init args
  * testsuite/geis2/check_general_types.c: added new test case fo GeisPointer
  * testsuite/geistest/Makefile.am: added libutouch-geis-xcb to header search path
  * testsuite/libutouch-geis/Makefile.am: same
  * testsuite/libutouch-geis/check_event_queue.c: changed name of event types
  * testsuite/libutouch-geis/check_geis_private.c: changed name of event types

2010-12-15  Stephen M. Webb  <stephen.webb@canonical.com>

  Added GEIS v2.0 region module.

  * libutouch-geis/geis_region.c: new file
  * libutouch-geis/geis_region.h: new file
  * testsuite/geis2/check_region.c: new test suite
  * testsuite/libutouch-geis/check_region.c: new test suite
  * include/geis/geis.h (GeisRegion): new typedef
    (GEIS_REGION_X11_ROOT): new region initialization constant
    (GEIS_REGION_X11_WINDOWID): new region initialization constant
    (geis_region_new): new function
    (geis_region_delete): new function
    (geis_region_name): new function
  * libutouch-geis/Makefile.am: added new files
  * libutouch-geis/libutouch-geis.ver: added new symbols
  * testsuite/geis2/Makefile.am: added new test suite files
  * testsuite/geis2/check_geis2_api.c: added new test suite 
  * testsuite/libutouch-geis/Makefile.am: added new test suite files
  * testsuite/libutouch-geis/check_geis2_internals.c: added new test suite

2010-12-12  Stephen M. Webb  <stephen.webb@canonical.com>

  Fixed some container expansion errors.

  * libutouch-geis/geis_attr.c (geis_attr_bag_insert): fixed realloc size
  * libutouch-geis/geis_subscription.c (geis_subscription_bag_insert):
    fixed realloc size, cleared newly realloc'd memory
  * testsuite/libutouch-geis/check_attr.c (expansion): new check
  * testsuite/libutouch-geis/check_subscription.c (expansion): new check

2010-12-12  Stephen M. Webb  <stephen.webb@canonical.com>

  Added GEIS v2.0 subscription activation calls.

  * include/geis/geis.h (geis_subscription_activate): new function
    (geis_subscription_deactivate): new function
  * libutouch-geis/geis_subscription.c: implemented above new functions
  * libutouch-geis/geis_backend.h (geis_backend_subscribe) new function
    (geis_backend_unsubscribe): new function
  * libutouch-geis/geis_backend.c: implemented above new functions
  * libutouch-geis/geis_backend_protected.h (GeisBackendVtable): added new
    subscribe and unsubscribe function pointers
  * libutouch-geis/geis_backend_test_fixture.c (_subscribe): new vfunction
    (_unsubscribe): new vfunction
  * libutouch-geis/geis_private.h (geis_activate_subscription): new function
    (geis_deactivate_subscription): new function
  * libutouch-geis/geis.c: implemented above new functions
  * libutouch-geis/geis_subscription.h: fixed a typo in a prototype
  * libutouch-geis/libutouch-geis.ver: added new GEIS v2.0 symbols
  * testsuite/geis2/check_subscription.c: new test cases

2010-12-12  Stephen M. Webb  <stephen.webb@canonical.com>

  Added forwarding functions so back ends can multiplex file descriptors through
  the API.

  * libutouch-geis/geis_private.h (geis_multiplex_fd): new function
    (geis_demultiplex_fd): new function
  * libutouch-geis/geis.c: implemented above new functions
  * testsuite/libutouch-geis/check_geis_private.c:
    renamed from check_backend_event_posting.c
    (multiplex_fd): new test case
  * testsuite/libutouch-geis/Makefile.am: renamed above file
  * testsuite/libutouch-geis/check_backend_multiplexor.c: removed debug message
    silenced build warnings

2010-12-08  Stephen M. Webb  <stephen.webb@canonical.com>

  Refactored event queue style.

  * libutouch-geis/geis_event_queue.h (geis_event_queue_enqueue): renamed from
    geis_event_queue_push
    (geis_event_queue_dequeue): renamed from geis_event_queue_pop
    changed event output parameter to return value
  * libutouch-geis/geis_event_queue.c: refactored for above
  * libutouch-geis/geis.c: refactored for above
  * testsuite/libutouch-geis/check_event_queue.c: refactored for above


2010-12-08  Stephen M. Webb  <stephen.webb@canonical.com>

  Added an event queue.

  * libutouch-geis/geis_event.c: new file
  * libutouch-geis/geis_event.h: new file
  * libutouch-geis/geis_event_queue.c: new file
  * libutouch-geis/geis_event_queue.h: new file
  * testsuite/libutouch-geis/check_backend_event_posting.c: new test case
  * testsuite/libutouch-geis/check_event_queue.c: new test case
  * include/geis/geis.h (GeisEventType): new enum type
    (geis_event_delete): new function
    (geis_event_type): new function
    (geis_event_attr_count): new function
    (geis_event_attr): new function
    (geis_event_attr_by_name): new function
  * libutouch-geis/Makefile.am: added new files
  * libutouch-geis/geis.c (struct _Geis): added input_event_queue,
    output_event_queue, and input_signal_pipe members
    (_default_output_event_callback): new function
    (_input_event_handler): new function
    (geis_new_empty): initialized new members
    (geis_register_event_callback): used _default_output_event_callback
    (geis_next_event): implemented stubbed-out function
  * testsuite/libutouch-geis/Makefile.am: added new test cases
  * testsuite/libutouch-geis/check_geis2_internals.c: added new test cases


2010-12-02  Stephen M. Webb  <stephen.webb@canonical.com>

  Added GEIS v2.0 event control functions.

  * include/geis/geis.h (GeisEvent): new type
    (GeisEventCallback): new type
    (GEIS_DEFAULT_EVENT_CALLBACK): new constant
    (geis_register_event_callback): new function
    (geis_dispatch_events): new function
    (geis_next_event): new function
  * libutouch-geis/geis_private.h (geis_post_event): new function
  * libutouch-geis/geis.c: implemented new functions
  * libutouch-geis/libutouch-geis.ver: added new symbols

2010-12-02  Stephen M. Webb  <stephen.webb@canonical.com>

  Added a back end base and test fixture.

  * libutouch-geis/geis_backend.c: new file
  * libutouch-geis/geis_backend.h: new file
  * libutouch-geis/geis_backend_protected.h: new file
  * libutouch-geis/geis_backend_test_fixture.c: new file
  * libutouch-geis/geis_backend_test_fixture.h: new file
  * include/geis/geis.h (GEIS_INIT_SERVICE_PROVIDER): changed constant value
    (GEIS_INIT_UTOUCH_MOCK_ENGINE): added new constant
  * libutouch-geis/Makefile.am: added new files
  * libutouch-geis/geis.c (struct _Geis): replaced is_test_fixture with backend
    (geis_set_valist): created new test fixture backend
    (geis_delete): destroyed backend
  * testsuite/geis2/check_config.c: used new name for test fixture back end
  * testsuite/geis2/check_geis_new.c: same
  * testsuite/geis2/check_subscription.c: idem
  * testsuite/libutouch-geis/check_subscription.c: ditto

2010-12-02  Stephen M. Webb  <stephen.webb@canonical.com>

  Added a back end multiplexor.

  * libutouch-geis/geis_backend_multiplexor.c: new file
  * libutouch-geis/geis_backend_multiplexor.h: new file
  * testsuite/libutouch-geis/check_backend_multiplexor.c: new testsuite
  * include/geis/geis.h (GeisStatus): added new status codes
    GEIS_STATUS_CONTINUE and GEIS_STATUS_EMPTY
    (GEIS_CONFIG_UTOUCH_MAX_EVENTS): new configuration item
  * libutouch-geis/Makefile.am: added new files
  * libutouch-geis/geis.c (struct _Geis): added backend_multiplexor field
    (geis_new_empty): initialized it
    (geis_delete): destroyed it
    (geis_get_configuration): retrieved its file descriptor and config value
    (geis_set_configuration): set its configuration value
  * testsuite/geis2/check_error_codes.c: checked new status codes
  * testsuite/libutouch-geis/Makefile.am
  * testsuite/libutouch-geis/check_geis2_internals.c

2010-11-29  Stephen M. Webb  <stephen.webb@canonical.com>

  Refactored geis_private.h to provide improved data encapsulation.

  * libutouch-geis/geis_private.h (struct _Geis): moved to geis.c
    (geis_error_stack): new function
  * libutouch-geis/geis.c: implemented new function
  * libutouch-geis/geis_error.c: used new function

2010-11-29  Stephen M. Webb  <stephen.webb@canonical.com>

  Fixed a typo in the Doxygen comments in geis.h.

  * include/geis/geis.h: fixed typo in documentation

2010-11-28  Stephen M. Webb  <stephen.webb@canonical.com>

  Added Geis Subscription creation and accessors.

  * libutouch-geis/geis_subscription.c: new file
  * libutouch-geis/geis_subscription.h: new file
  * testsuite/geis2/check_subscription.c: new API test suite
  * testsuite/libutouch-geis/check_subscription.c: new internals test suite
  * include/geis/geis.h (GeisFilter): new type
    (GeisSubscription): new type
    (GeisSubscriptionFlags): new type
    (geis_subscription_new): new function
    (geis_subscription_delete): new function
    (geis_subscription_name): new function
    (geis_subscription_id): new function
    (geis_subscription_add_filter): new function
    (geis_subscription_remove_filter): new function
  * libutouch-geis/Makefile.am: added new files
  * libutouch-geis/geis_private.h (geis_subscription_bag): new function
    (struct _Geis): added subscription_bag field
  * libutouch-geis/geis.c (geis_subscription_bag): implemented it
    (geis_new_empty): created an empty subscription bag
  * libutouch-geis/libutouch-geis.ver: added new geis_subscription_* symbols
  * testsuite/geis2/Makefile.am: added new test suite source
  * testsuite/geis2/check_geis2_api.c: added new test suite
  * testsuite/libutouch-geis/Makefile.am: added new test suite source
  * testsuite/libutouch-geis/check_geis2_internals.c: added new test suite


2010-11-26  Stephen M. Webb  <stephen.webb@canonical.com>

  Added Geis Attr functions.

  * libutouch-geis/geis_attr.c: new file
  * libutouch-geis/geis_attr.h: new file
  * testsuite/libutouch-geis/check_attr.c: new unit test suite
  * include/geis/geis.h (GeisAttr): new type
    (geis_attr_name): new function
    (geis_attr_type): new function
    (geis_attr_value_to_boolean): new function
    (geis_attr_value_to_float): new function
    (geis_attr_value_to_integer): new function
    (geis_attr_value_to_string): new function
  * libutouch-geis/Makefile.am: added new files
  * libutouch-geis/libutouch-geis.ver: added new symbols
  * testsuite/libutouch-geis/Makefile.am: added new test suite
  * testsuite/libutouch-geis/check_error_reporting.c: renamed test suite
  * testsuite/libutouch-geis/check_geis2_internals.c: added new test suite

2010-11-24  Stephen M. Webb  <stephen.webb@canonical.com>

  Added Geis configuration functions.

  * include/geis/geis.h (geis_get_config): new function
    (geis_set_config): new function
  * libutouch-geis/geis.c: added stubs for new functions
  * libutouch-geis/libutouch-geis.ver: added symbols for new functions
  * testsuite/geis2/check_config.c: new test suite for new functions
  * testsuite/geis2/Makefile.am: added above new file

2010-11-24  Stephen M. Webb  <stephen.webb@canonical.com>

  Added silent rules to build.

  * configure.ac (AM_INIT_AUTOMAKE): required minimum version 1.11
    (AM_SILENT_RULES): new macros to set silent build rules on by default

2010-11-24  Stephen M. Webb  <stephen.webb@canonical.com>

  Fixed a "make distcheck" problem.

  * testsuite/libutouch-geis/Makefile.am (check_geis2_internals_CFLAGS): added
    $(top_srcdir) to the header search path

2010-11-24  Stephen M. Webb  <stephen.webb@canonical.com>

  Added unit testing for uTouch GEIS v2.0 internals.

  * testsuite/libutouch-geis: new subdirectory
  * testsuite/libutouch-geis/Makefile.am: new file
  * testsuite/libutouch-geis/check_error_reporting.c: new file
  * testsuite/libutouch-geis/check_geis2_internals.c: new file
  * configure.ac (AC_OUTPUT): added new Makefile
  * testsuite/Makefile.am (SUBDIRS): added new subdirectory
  * testsuite/geis1/check_geis_internals.c: renamed test suite
  * testsuite/geis2/check_geis2_api.c: renamed test suite

2010-11-23  Stephen M. Webb  <stephen.webb@canonical.com>

  Added Error Reporting functions.

  * libutouch-geis/geis_error.c: new file
  * libutouch-geis/geis_error.h: new file
  * libutouch-geis/geis_private.h: new file
  * include/geis/geis.h (geis_error_count): new function
    (geis_error_code): new function
    (geis_error_message): new function
  * libutouch-geis/Makefile.am: added new files
  * libutouch-geis/geis.c: used new functions
  * libutouch-geis/libutouch-geis.ver: added new function symbols

2010-11-23  Stephen M. Webb  <stephen.webb@canonical.com>

  Added diagnostics to geis_new().

  * libutouch-geis/geis.c (geis_error): reported calloc failure
    (geis_set_valist): added debug diagnostics for init args

2010-11-23  Stephen M. Webb  <stephen.webb@canonical.com>

  Moved diagnostic logging from GEIS v1.0 to GEIS v2.0 libraries.

  * libutouch-geis/geis_logging.h: renamed from libutouch-geis-xcb/geis_logging.h
  * libutouch-geis/geis_logging.c: renamed from libutouch-geis-xcb/geis_logging.c
  * libutouch-geis-xcb/Makefile.am: removed above renamed files
  * libutouch-geis/Makefile.am: added above renamed files
  * testsuite/geis1/Makefile.am: changed library path
  * testsuite/geistest/Makefile.am: changed library path

2010-11-23  Stephen M. Webb  <stephen.webb@canonical.com>

  Merged GEIS v1.0 into GEIS v2.0 library for backwards compatibility.

  * libutouch-geis-xcb/libutouch-geis-xcb.ver: removed
  * libutouch-geis-xcb/Makefile.am: converted to build a convenience lib
  * libutouch-geis/Makefile.am: added libutouch-geis-xcb as a conveniemnce lib
  * libutouch-geis/libutouch-geis.ver: Added GEIS v1.0 symbols
  * testsuite/geis2/Makefile.am: fixed path to shared library in build tree

2010-11-22  Stephen M. Webb  <stephen.webb@canonical.com>

  Refactored API initialization to use variadic arguments a la spec change.

  * include/geis/geis.h (geis_new): changed function prototype
  * libutouch-geis/geis.c (geis_new_empty): new function
    (geis_set_valist): new function
    (geis_new): changed parameters, used new functions
  * testsuite/geis2/check_geis_new.c (geis_new_and_delete): changed geis_new()
    arguments

2010-11-22  Stephen M. Webb  <stephen.webb@canonical.com>

  Fixed visibility of new GEIS 2.0 symbols.

  * include/geis/geis.h (geis_new): fixed visibility
    (geis_delete): same

2010-11-22  Stephen M. Webb  <stephen.webb@canonical.com>

  Made geis2_geis_new test case pass.

  * libutouch-geis/geis.c (geis_hints_find_by_id): new static function
    (geis_hints_append): new static function
    (geis_new): used them, malloc'd struct _Geis
    (geis_delete): free'd struct _Geis

2010-11-22  Stephen M. Webb  <stephen.webb@canonical.com>

  Added test case for GEIS v2.0 geis_new() and geis_delete() functions, together
  with a skeletal implementation of the libutouch-geis v2.0 library.
  
  * libutouch-geis: new source directory
  * libutouch-geis/Makefile.am: new build recipe for libutouch-geis v2.0
  * libutouch-geis/geis.c: new source file
  * libutouch-geis/libutouch-geis.ver: new library version map
  * testsuite/geis2/check_geis_new.c: new test suite
  * Makefile.am (SUBDIRS): added libutouch-geis
  * configure.ac (AC_OUTPUT): added libutouch-geis/Makefile
  * include/geis/geis.h (GeisHints): new data structure
    (Geis): new opaque data structure
    (geis_new): new function
    (geis_delete): new function
  * testsuite/geis2/Makefile.am (check_geis2_api_SOURCES): added check_geis_new
  * testsuite/geis2/check_geis2_api.c (main): added geis_new_suite

2010-11-21  Stephen M. Webb  <stephen.webb@canonical.com>

  Added test case for geis v2.0 error codes.

  * include/geis/geis.h: added required v2.0 error codes
  * testsuite/geis2/check_error_codes.c: new test case
  * testsuite/geis2/Makefile.am: added new test case
  * testsuite/geis2/check_geis2_api.c: same

2010-11-20  Stephen M. Webb  <stephen.webb@canonical.com>

  Added test case for geis v2.0 basic types.

  * testsuite/geis2/check_general_types.c: new file
  * testsuite/geis2/Makefile.am: added above new file
  * testsuite/geis2/check_geis2_api.c (geis2_general_types_suite_new): added new
    unit test

2010-11-19  Stephen M. Webb  <stephen.webb@canonical.com>

  Added geis v2.0 test hardness and version macro test.

  * include/geis/geis.h (GEIS_VERSION_2_0): added macro
  * testsuite/geis2/check_geis_api.c: new testsuite.
  * testsuite/geis2/check_version_macro.c: added unit test for geis 2.0 version
    macro
  * testsuite/geis2/Makefile: new file
  * configure.ac (AC_OUTPUT): added above enw file
  * testsuite/Makefile: added new testsuite directory geis2

2010-11-12  Stephen M. Webb  <stephen.webb@canonical.com>

  Made existing unit test directory specific to geis v1.0.

  * testsuite/geis1: renamed from testsuite/check
  * configure.ac: renamed testsuite/check
  * testsuite/Makefile.am: same
  * testsuite/geis1/Makefile.am: same

2010-10-20  Stephen M. Webb  <stephen.webb@canonical.com>

  Added unit tests for internal geis_instance_table.

  * testsuite/check/check_instance_table.c: new file
  * testsuite/check/Makefile.am (check_geis_internals_SOURCES): added it
    (MOSTLYCLEANFILES): new target to clean up unit test logs
  * testsuite/check/check_geis_internals.c (main): added unit test suite

2010-10-20  Stephen M. Webb  <stephen.webb@canonical.com>

  Added unit test infrastructure based on 'check'.

  * testsuite/check/Makefile.am: new file
  * testsuite/check/check_geis_internals.c: new file
  * testsuite/Makefile.am (SUBDIRS): added check target
  * configure.ac: added new stanza for detecting check package
    (AC_CONFIG_FILES): added testsuite/check/Makefile

2010-10-18  Stephen M. Webb  <stephen.webb@canonical.com>

  Added configury check for xcb-proto package >= 1.6 (LP: #661946).

  * configure.ac: added PKG_CHECK_MODULES for xcb-proto >= 1.6

2010-10-14  Stephen M. Webb  <stephen.webb@canonical.com>

  Release version 1.0.13.

  * configure.ac (AC_INIT): bumped package version to 1.0.13

2010-10-12  Stephen M. Webb  <stephen.webb@canonical.com>

  Removed extra newlines from diagnostic messages

  * libutouch-geis-xcb/geis_xcb.c: removed newline from several diagnostic
    messages.

2010-10-07  Stephen M. Webb  <stephen.webb@canonical.com>

  Fixed LP: #656503 - event dispatch can hang under some circumstances

  * libutouch-geis-xcb/geis_xcb.c (geis_xcb_dispatch): changed loop condition
  * libutouch-geis-xcb/Makefile.am (libutouch_geis_la_LDFLAGS): bumped library
    revision

2010-09-28  Stephen M. Webb  <stephen.webb@canonical.com>

  Version bump to 1.0.12.

  * configure.ac (AC_INIT): bumped package version to 1.0.12

2010-09-28  Stephen M. Webb  <stephen.webb@canonical.com>

  Made lib compatible with C++.

  * geis/geis.h: forced C linkage

2010-09-14  Stephen M. Webb  <stephen.webb@canonical.com>

  Version bump tp 1.0.11

  * configure.ac: bumped package version to 1.0.11
  * libutouch-geis-xcb/Makefile.am: bumped shlib version to reflect changes

2010-09-01  Stephen M. Webb  <stephen.webb@canonical.com>

  Fixed typos in manpage.

  * doc/geistest.1: fixed several typographical errors

2010-09-01  Stephen M. Webb  <stephen.webb@canonical.com>

  Fixed a memory leak when logging messages.

  * libutouch-geis-xcb/geis_logging.c (_geis_message): fixed memory leak

2010-08-31  Stephen M. Webb  <stephen.webb@canonical.com>

  Fixed prefix string used in diagnostics.

  * libutouch-geis-xcb/geis_logging.c (_geis_message): fixed which prefix string
    gets used for which diagnostic level

2010-08-31  Stephen M. Webb  <stephen.webb@canonical.com>

  Removed input device enumeration handling until later.

  * libutouch-geis-xcb/geis.c (geis_input_devices): removed #if 0 block
  * libutouch-geis-xcb/geis_instance.h (geis_instance_input_devices): removed 
  * libutouch-geis-xcb/geis_instance.c (geis_instance_input_devices): removed 
  * libutouch-geis-xcb/geis_xcb.h (geis_xcb_input_devices):  added funcs and
    cookie parameters
  * libutouch-geis-xcb/geis_xcb.c (_GeisXcb): added input_funcs and input_cookie
    (geis_xcb_new): removed #if 0 blocks
    (geis_xcb_input_devices): removed XInput handling until later

2010-08-30  Stephen M. Webb  <stephen.webb@canonical.com>

  Removed some debug code and fixed pasto.

  * libutouch-geis-xcb/geis_instance.c: fixed a pasto
  * testsuite/geistest/geistest.c: removed debug code

2010-08-30  Stephen M. Webb  <stephen.webb@canonical.com>

  Fixed so multiple windows will work.

  Altered geistest to work with a single window or all windows, had to fix geis
  implementation so this was possible.

  * libutouch-geis-xcb/geis_instance_table.c: new file
  * libutouch-geis-xcb/geis_instance_table.h: new file
  * configure.ac: added package checks for x11-xcb and xi
  * doc/geistest.1: documented new CLI switches
  * geis/geis.h (geis_input_devices): fixed argument type
  * libutouch-geis-xcb/Makefile.am (libutouch_geis_la_SOURCES): added new files
    (libutouch_geis_la_CFLAGS): aded X11XCB_CFLAGS and XI2_CFLAGS
    (libutouch_geis_la_LIBADD): aded X11XCB_LIBS and XI2LIBS_
  * libutouch-geis-xcb/geis.c (s_geis_xcb): new static global
    (geis_init): used it
  * libutouch-geis-xcb/geis_instance.h (_GeisInstance): added window_id
    (geis_instance_new): renamed from geis_instance_get
    (geis_instance_input_devices): new function
    (geis_instance_subscribe): added GeisXcb parameter
    (geis_instance_get_window_id): new function
    (geis_instance_fd): removed function
    (geis_instance_event_dispatch): removed function
  * libutouch-geis-xcb/geis_instance.c: implemented new functions
  * libutouch-geis-xcb/geis_xcb.h (geis_xcb_new): renamed from geis_xcb_get
    (geis_xcb_create_instance): new function
    (geis_xcb_input_devices): new function
    (geis_xcb_subscribe): added GeisInstance parameter
    (geis_xcb_dispatch): changed parameter type to GeisXcb
  * libutouch-geis-xcb/geis_xcb.c: Implemeneted new functions
  * testsuite/geistest/geistest.c (parse_opts): added -w switch
    (subscribe_window): new function
    (subscribe_windows_preorder): new function
    (subscribe_all_windows): new function
    (main): used the new functions

2010-08-30  Stephen M. Webb  <stephen.webb@canonical.com>

  Added runtime diagnostic facility.

  * libutouch-geis-xcb/geis_debug.h: replaced with
  * libutouch-geis-xcb/geis_logging.h: mew file
  * libutouch-geis-xcb/geis_logging.c: new file
  * libutouch-geis-xcb/Makefile.am: replaced above files
  * libutouch-geis-xcb/geis_xcb.c: replaced geis_debug calls with
    geis_warning or geis_error as appropriate

2010-08-27  Stephen M. Webb  <stephen.webb@canonical.com>

  Fixed checking of gesture masks for multiple input devices.

  * libutouch-geis-xcb/geis_instance.c (geis_instance_subscribe):
    added missing index increment
  * libutouch-geis-xcb/geis_xcb.c (geis_xcb_verify_event_selection):
    added logic for iterating through multiple input devices

2010-08-27  Stephen M. Webb  <stephen.webb@canonical.com>

  Move gesture-type-added callback until later in the subscription  sequence.

  * libutouch-geis-xcb/geis_xcb.c (geis_xcb_subscribe): move call to
    geis_xcb_dispatch_gesture_type until later in sequence

2010-08-27  Stephen M. Webb  <stephen.webb@canonical.com>

  Removed "Grab" gestire entirely from the list of known gestures.

  * libutouch-geis-xcb/geis_xcb.c (s_grail_type_map): removed GRAIL_TYPE_SYSFLAG1
    (geis_xcb_dispatch_gesture_type): removed references to GRAIL_TYPE_SYSFLAG1

2010-08-26  Stephen M. Webb  <stephen.webb@canonical.com>

  Prevented "Grab" gesture from being propagated.

  * libutouch-geis-xcb/geis_xcb.c (geis_xcb_dispatch_gesture_type): skipped
    notification of the availability of the "Grab" gesture type.

2010-08-26  Stephen M. Webb  <stephen.webb@canonical.com>

  Fixed an allocation size issue.

  * libutouch-geis-xcb/geis_instance.c (geis_instance_get): fixed allocation
    size issue

2010-08-26  Stephen M. Webb  <stephen.webb@canonical.com>

  Minor style adjustments.  Adjusted whitespace for consistency.

  * libutouch-geis-xcb/geis_xcb.c (geis_xcb_verify_event_selection):
    renamed function from geis_xcb_select_events
    (geis_xcb_determine_primitive_type): renamed from
    geis_xcb_determine_fundamental_gesture_type
    (geis_xcb_get_gesture_type_primitive_name): renamed form
    geis_xcb_get_gesture_type_fundamental_name

2010-08-25  Stephen M. Webb  <stephen.webb@canonical.com>

  Reverted version bump.

  * configure,.ac (AC_INIT): reverted to version 1.0.10

2010-08-23  Stephen M. Webb  <stephen.webb@canonical.com>

  Implemented gesture and input device selection.

  * geis/geis.h: new gesture definitions
  * libutouch-geis-xcb/geis_xcb.h (geis_xcb_subscribe):
    added device_id parameter
  * libutouch-geis-xcb/geis_xcb.c (s_grail_type_map): new gesture definitions
    (geis_xcb_map_gestures_to_mask): new function
    (geis_xcb_select_events): new function
    (geis_xcb_subscribe): used them
    added device_id parameter
    (geis_xcb_determine_gesture_type): renamed to
    geis_xcb_determine_fundamental_gesture_type
    (geis_xcb_get_gesture_type_fundamental_name): new function
    (geis_xcb_dispatch_gesture_type): mapped public gesture definitions to
    fundamental gesture types
  * libutouch-geis-xcb/geis_instance.c (geis_instance_subscribe):
    handled input_list argument
  * testsuite/geistest/geistest.c: included an example of selecting gestures

2010-08-22  Chase Douglas <chase.douglas@canonical.com>

  Bumped to version 1.0.10 for various fixes

  * geisimple.h: Define the correct number of attributes for each gesture
  * geis.h: Sync up with latest grail ABI for gesture attributes
  * geis_xcb.c: Sync up with latest grail ABI for gesture attributes
  * geisspec-1.0.asc: Sync up with latest grail ABI for gesture attributes
  * geis_instance.h: Fix header include macro typo
  * geisimple.h: Use int32_t instead of long for integer values
  * geis.h: Make win_type unsigned to match usage in code
  * geis_xcb.c: Fix missing initializer value issue
  * geis_xcb.c: Fix unused variable warning

2010-08-20  Stephen M. Webb  <stephen.webb@canonical.com>

  Removed spec build from packaged files.

  * doc/Makefile.am (doc-html): removed doc-html-asciidoc

2010-08-16  Stephen M. Webb  <stephen.webb@canonical.com>

  Conformed to GNU strictness for consistency.

  * AUTHORS: New file.
  * COPYING: new file renamed from COPYING.LGPL.
  * INSTALL: New file.
  * NEWS: New file.
  * README: New file.
  * Makefile.am: distributed the new files.
  * configure.ac: Swicthed from foreign to gnu conformance level.
  * libutouch-geis-xcb/Makefile.am: Fixed relative paths.

2010-08-16  Stephen M. Webb  <stephen.webb@canonical.com>

  Bumped version to 1.0.9 to replect API change.

  * configure.ac: bumped package version.

2010-08-16  Stephen M. Webb  <stephen.webb@canonical.com>

  Added standard fundamental gesture constants.

  * doc/geisspec-1.0.asc: Added section on fundamental gestures.
  * geis/geis.h: Added fundamental gestures and attributes.
  * libutouch-geis-xcb/geis_xcb.c: Used them.