File: ChangeLog

package info (click to toggle)
gnucash 1.3.4-3
  • links: PTS
  • area: main
  • in suites: potato
  • size: 9,232 kB
  • ctags: 6,947
  • sloc: ansic: 60,740; lisp: 10,772; sh: 7,437; perl: 3,812; cpp: 2,992; sql: 1,255; makefile: 673
file content (2668 lines) | stat: -rw-r--r-- 97,485 bytes parent folder | download
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
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2000-03-26  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/scm/report/transaction-report.scm: i18n the report

	* src/gnome/window-register.c (gnc_transaction_delete_query):
 	destroy on close, don't hide.

	* src/register/splitreg.c: several new functions for saving and
	restore the contents of the cursor.

	* src/SplitLedger.c (xaccSRRedrawRegEntry): always redraw, caller
 	knows best!
	(LedgerMoveCursor): if we are leaving the pending transaction,
 	commit it.
	(xaccSRLoadRegister): save and restore changed cursor values.
	(xaccSRSaveRegEntry): clear the register change flags.

2000-03-24  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/register/gnome/quickfillcell-gnome.c (QuickFillDirect): if
 	the cursor is in the selection, move it to the start of the
 	selection.

	* Makefile.common: add the value of DEFS to the compile flags

	* Makefile.init.in: get the value for DEFS.

	* src/register/numcell.c: new cell for entering numbers. Handles
	accelerators for increasing/decreasing the number and remembers
	the largest number for auto-filling.

2000-03-23  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/scm/report/average-balance.scm: fixed many things and i18n'd
	the report.

	* src/engine/util.c (PrintAmt): always use '.' as the decimal point
	coming from sprintf.

2000-03-22  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/scm/prefs.scm: set the default currency code using the
	wrapped C function in util.c below.

	* src/engine/util.c (xaccSPrintAmount): add a PRTNMN flag for
 	printing non-monetary values.
	(gnc_locale_default_currency): return the currency code for the
 	current locale.

	* src/register/splitreg.c (xaccInitSplitRegister): update for
 	changes to the price cell api.

	* src/engine/util.c (xaccSPrintAmount): set the precision based on
 	the locale.

	* src/register/pricecell.c: remove some unneeded api calls and
	add one for specifying that the cell contains a share quantity.

2000-03-19  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/dialog-options.c (gnc_option_set_ui_widget): request
	a reasonable size for the number-range widget.

	* src/FileDialog.c (gncFileQuerySave): return a boolean value
 	indicating whether the user wants to proceed or cancel. The uses
 	of this function have been updated to respond appropriately.

2000-03-18  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/engine/Query.c (xaccInitQuery): make the standard engine
 	order the default sort order.

	* src/gnome/window-adjust.c (adjBRefresh): update the title

	* src/Refresh.c (gnc_account_ui_refresh): refresh the edit account
	and adjust balance windows too.

	* src/gnome/dialog-edit.c: add gui for changed the account type.

	* src/engine/Account.c (xaccAccountSetType): allow account types
 	to be changed.

2000-03-15  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/scm/extensions.scm (gnc:new-menu-namer): register and
 	translate the names correctly.

	* src/scm/report.scm (gnc:report-menu-setup win): make sure the
 	report title gets registered and translated.

	* src/scm/report/hello-world.scm: i18n'd this report.

2000-03-14  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/register/gnome/gnucash-sheet.c
 	(gnucash_register_key_press_cb): generate activate event on a
 	keypad enter as well as the return key.

	* Docs/C/xacc-ticker.html: updated for Yahoo Europe information.

2000-03-13  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/dialog-utils.c: added Yahoo Europe to the quote source
 	menu.

	* src/quotes/Quote.pm: added method for getting Yahoo European
 	quotes. Also, fixed the parsing of csv data.

	* src/quotes/gnc-prices: cleanup the code, less wordy output.

	* src/quotes/Quote.pm (yahoo): updates from latest YahooQuote.pm

2000-03-12  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/scm/c-interface.scm (gnc:error->string tag args): print a
 	stack backtrace.

	* src/gnome/cursors.c: when given a NULL argument, the set and
	unset busy cursor function change all top-level window cursors.
	This breaks the motif side though, in that the cursor will no
	longer get set there. Oh well.

	* src/gnome/window-register.c (duplicateCB): new callback for
 	duplicating the current transaction/split.

	* src/SplitLedger.c (xaccSRDuplicateCurrent): new function to
 	duplicate the current split or transaction.

	* src/gnome/window-report.c (gnc_run_report): set the busy cursor
	while running the report generator.

2000-03-10  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/window-main.c (gnc_ui_refresh_statusbar): revise the
 	profit and asset calculation.

	* src/MultiLedger.c (xaccLedgerDisplayRefresh): don't reverse the
 	balances ever -- let the GUI do it.

	* src/motif/RegWindow.c (regRefresh): reverse the balances
	for INCOME and expense.

2000-03-09  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/window-register.c (regRefresh): print
 	reversed-balanced account balances appropriately.

2000-03-07  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/scm/report/transaction-report.scm: a few bug fixes.

	* src/gnome/window-main.c (gnc_ui_delete_account): destroy the
 	windows *then* remove the account from the tree. Sometimes,
 	destroying the window can result in a refresh, which will do
 	strange things if we have already removed the account from the
 	tree.

2000-03-06  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/window-reconcile.c (recnRefresh): resize the window

	* src/FileDialog.c (gncPostFileOpen): set the busy cursor while
 	reading the file.
	(gncFileSave): ditto.

	* src/register/gnome/gnucash-sheet.c
 	(gnucash_sheet_update_adjustments): set the step increment.

2000-03-06  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* src/register/gnome/gnucash-style.c
 	(gnucash_sheet_style_set_col_width): Adjust the overall style
 	width, too.

	* src/register/gnome/gnucash-header.c
 	(gnucash_header_auto_resize_column): Resize the window to fit the
 	register.
	(gnucash_header_event): ditto on a column resize.

2000-03-05  Rob Browning  <rlb@cs.utexas.edu>

	* src/scm/report/transaction-report.scm: add support for depend
	mechanism.

	* src/scm/report/hello-world.scm: add support for depend
	mechanism.

	* src/scm/report/folio.scm: add support for depend mechanism.

	* src/scm/report/balance-and-pnl.scm: add support for depend
	mechanism.

	* src/scm/report/average-balance.scm: add support for depend
	mechanism.

	* src/scm/report.scm (gnc:report-menu-setup): fixed minor
	non-r5rsism (defines must be at the beginning of a <body>).

	* src/scm/report/report-list.scm: new file.  This is where all of
	the reports that should be loaded at startup should be listed.

	* src/scm/main.scm (gnc:startup): don't autoscan/load from the
	report dir anymore.  Use the depend mechanism instead.  This isn't
	as convenient, but it's safer.

	* src/scm/hooks.scm (gnc:hook-run-danglers): added a little
	debugging code.

	* src/scm/extensions.scm (gnc:extensions-menu-setup): fixed minor
	non-r5rsism (nested defines must be at the beginning of a <body>).

	* make-gnucash-patch: allow the user to override the default
	locations with environment variables.

2000-03-04  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/guile/gnucash.c (main): load the locale from the environment
 	with setlocale. This is needed so that guile can find the locale.

	* Docs/: reorganized the Docs directory. Then english language
 	stuff moved to the "C" directory. The french stuff goes under
 	"fr". The "En" and "Fr" directories are gone. The standard for
 	country codes uses lower-cases letters, so we should stick to
 	that. The graphics files go under "pix" directories under their
 	respective language directories.

	* src/scm/path.scm: create documentation search paths based on the
 	current locale. The default "C" locale is always searched last.

	* src/reports/File.c (gncFindFile): take out dead code.

2000-03-04  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* src/register/gnome/gnucash-style.c (set_dimensions_pass_one):
 	Only set the dimensions based on percentages if the dimensions
 	have not been set before.  This gets rid of some strange behavior
 	where styles change width by a few pixels when window size was
 	changed.
	(gnucash_sheet_style_set_dimensions): Add a width argument; now we
 	compute dimensions to fit "width" as best as possible.  Most of
 	the time width should be the allocation width of the sheet, except
 	that when the style is first compiled, the allocation width may be
 	unavailable.
	(style_recompute_layout_dimensions): Set dimensions->width
 	properly.
	(gnucash_style_default_width): Nuke this function, since we can
 	now use dimensions->width.
	(gnucash_sheet_style_compile): Use a default width to set
 	dimensions.

	* src/register/gnome/gnucash-sheet.c (gnucash_sheet_set_top_row):
 	Update the canvas before the scroll.  This helps eliminate some of
 	the flashing when the register scrolls.  Still not perfect,
 	though.

2000-03-03  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* src/register/gnome/gnucash-sheet.c
 	(gnucash_sheet_size_allocate): Keep track of the allocation and
 	update everything only if the allocation changes.  This is needed
 	because gnome canvas widget items always do a gtk_widget_set_usize
 	(), which in turn forces a reconfigure of the parent widgets.  So
 	we were getting size_allocate events even when the size of the
 	window was not changing.
	(gnucash_sheet_set_top_row): Scroll the sheet by setting the
 	adjustment values rather than calling gnome_canvas_scroll_to ().

	* src/register/gnome/gnucash-header.c
 	(gnucash_header_reconfigure): Set the sheet width from the header.

	* src/register/gnome/gnucash-sheet.c
 	(gnucash_sheet_block_set_from_table): Check to see if the style
 	has changed before we reallocate all the entries and colors.
	(gnucash_sheet_block_set_entries): Don't strdup the entries from
 	the table.
	(gnucash_sheet_block_clear_entries): Don't free the text in the
 	entries, since now the table owns this.
	(gnucash_sheet_set_scroll_region): New function; sets the scroll
 	region on the register canvas.
	(gnucash_sheet_update_adjustments): This was being done
 	incorrectly.  The layout widget on which the gnome canvas is based
 	takes care of the adjustments, and we've just connected to these
 	adjustments in the smooth-scroll case.  Now that the scroll region
 	is set correctly, just let the layout manage the adjustments.
	

2000-03-03  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/register/pricecell.c (PriceMV): accept thousands separators.

	* src/scm/c-interface.scm: new functionality for registering
 	translatable strings and saving them to a file in a suitable
 	format for po creation. This touched a bunch of other .scm
	files as well.

2000-03-02  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/dialog-options.c: use gettext to translate the strings
	used to make the gui components.

	* src/gnome/window-reconcile.c
 	(gnc_reconcile_window_create_list_frame): always show vertical
 	scrollbars, the columns widths work out better that way.

	* src/gnome/reconcile-list.c
 	(gnc_reconcile_list_get_needed_height): better estimate of needed
 	height than just multiplying row height times rows.

	* src/register/gnome/gnucash-item-list.c (gnc_item_list_autosize):
 	new function to autosize the list. For some reason, have the list
 	autosize for each new insertion wasn't working for very large
 	registers.

	* src/register/gnome/gnucash-sheet.c (gnucash_sheet_new): bump up
 	the scroll region for very large registers.

	* src/gnome/window-main.c (gnc_main_create_toolbar): removed the
 	C-a and C-d shortcuts for adding and deleting accounts.

	* src/gnome/reconcile-list.c (gnc_reconcile_list_init): print
 	selected 'y' reconcile flags in yellow for better contrast.
	(gnc_reconcile_list_unselect_row): don't unselect the row if we
 	are toggling the current row.

	* src/gnome/window-reconcile.c (recnRecalculateBalance): reverse the
	balance if appropriate.

2000-03-01  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/window-adjust.c (gnc_ui_AdjBWindow_ok_cb): reverse the
 	balance if appropriate.

	* src/scm/extensions.scm: add the extensions menu if  debugging.

	* src/scm/bootstrap.scm: new function to check debugging status.

	* src/FileDialog.c (gncFileQIFImport): set the busy cursor when
	reading and processing the qif.

	* src/SplitLedger.c: added a sign-reversal callback.

	* src/gnome/dialog-utils.c (gnc_ui_get_account_full_balance): used
 	the sign-reversal option in computation.

	* src/gnome/top-level.c: implement the sign-reversal configuration
	and callbacks.

	* src/gnome/window-main.c (gnc_ui_refresh_statusbar): used
 	sign-reversal option in computation.

	* src/scm/prefs.scm: add an option to choose how accounts
	are sign-reversed.

2000-02-29  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/cursors.c (gnc_ui_set_cursor): let the gtk main loop
 	catch up before we exit. This makes sure the cursor gets changed
	before we return.

	* src/gnome/dialog-filebox.c: hide the window before exiting
	the gtk main loop.

	* src/scm/prefs.scm: added a new option for expanding parent
	accounts with double-clicks instead of opening them.

	* src/gnome/window-main.c (gnc_account_tree_activate_cb): use
 	expansion option to decide whether to open or expand.

	* src/SplitLedger.c: check for common currency when saving a
 	register entry. If there is none, don't perform the split
 	insertion; instead show a warning dialog.

	* src/scm/prefs.scm: converted account type and account field
 	options to list options.

	* src/register/gnome/combocell-gnome.c (leaveCombo): if a new
 	value is returned, also set the same value as the cell value.

	* Makefile.in: added 'unfinished' to qt compile target info.

2000-02-28  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/scm/options.scm: added a list option

	* src/scm/report/hello-world.scm: added a demo list option

	* src/gnome/dialog-options.c: added implementation of list options.

	* src/engine/QIFIO.c (xaccParseQIFDate): fix for 4-digit dates.
	(xaccParseQIFDate): fix for x/x' 00 dates, which are an old
	format for 2000 dates.

	* src/scm/report/average-balance.scm: fix report to work when
 	there are no accounts.

	* src/scm/report/transaction-report.scm: initialize the inflow and
 	outflow variables to zero each time the report is run.

2000-02-27  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* src/gnome/top-level.c (gnc_configure_register_borders): Add
 	options for setting cell borders.

	* src/scm/prefs.scm: ditto

	* src/register/gnome/gnucash-style.c
 	(gnucash_style_set_cell_borders):
	(gnucash_style_set_register_borders):
	(gnucash_style_set_borders):
	(gnucash_sheet_set_borders): Functions to interactively set cell
 	borders.

2000-02-26  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* src/register/gnome/gnucash-style.c
 	(gnucash_sheet_style_compile): Support for turning horizontal and
 	vertical borders on and off.
	(gnucash_sheet_style_recompile): Ditto

	* src/register/gnome/gnucash-grid.c (draw_cell): ditto

	* src/register/gnome/gnucash-header.c
 	(gnucash_header_reconfigure): Fix a bug in how the scroll region
 	was set.  Remove some outdated code.

2000-02-27  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/dialog-transfer.c (gnc_xfer_dialog_create): use
 	gnc_localconv to get the currency symbol.

	* src/gnome/window-adjust.c (adjBWindow): put colons after label.
  	Use gnc_localeconv to get the currency symbol.

2000-02-26  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/window-adjust.c (gnc_adjust_update_cb): only update if
 	the new string is different from the old. ditto for the reconcile
	and transfer windows.

2000-02-25  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/register/pricecell.c (PriceHelp): print out full number for
 	help value.

	* src/register/table-allgui.c (makePassive): implement alternative
 	passive colors.

	* src/register/splitreg.h (struct _SplitRegisterColors): add color
 	for odd rows in single mode, and boolean argument determining
 	whether to alterative virtual or physical rows in double mode.

2000-02-25  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/register/gnome/gnucash-sheet.c (gnucash_sheet_check_grab):
 	see if we need to release the grab.

	* src/register/splitreg.c (xaccInitSplitRegister): configure the
	mxfer cell with an ignore string (SPLIT_STR) and a help string
	explaining multi-line transactions.

	* src/register/gnome/combocell-gnome.c: added help handler and
 	ignore string functions.

	* src/register/table-allgui.c (gnc_table_enter_update): don't set
 	changed flag if new string is identical.

2000-02-24  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/register/table-gnome.c (xaccRefreshTableGUI): redo the style
 	information so that new colors (and other info) get refreshed.

	* src/register/gnome/gnucash-header.c (gnucash_header_draw): use
 	header style color to draw header background.

	* src/gnome/option-util.c: new functions to support color options.

	* src/gnome/dialog-options.c: gui implementation of color options.

	* src/scm/report/hello-world.scm: used the new color option.

	* src/scm/options.scm: added a new color option.

2000-02-23  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/scm/extensions.scm (gnc:new-menu-namer): new object that
 	automatically picks accelerator keys for a group of menu items.

2000-02-22  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/register/gnome/gnucash-sheet.c (gnucash_sheet_delete_cb):
 	don't bother with the callback if the ending position of the
 	deleted section is <= to the starting position. This can happen.

	* include/messages_i18n.h.in: added menu item strings with
	underscore accelerators. Changed several gnome files to use
	these strings.

2000-02-21  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/register/gnome/gnucash-header.c
 	(gnucash_header_reconfigure): scroll region width should be the
 	style width, not the allocation width.

2000-02-20  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/guile/gfec.c (gfec_catcher): use a guile function for
 	printing the error instead of the C interfaces. This removes
	a dependency on guile 1.3.4.

	* src/scm/c-interface.scm: add function for return an error string.
	Used by the C-side error catcher in gfec.c.

2000-02-19  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/scm/report/hello-world.scm: added a 'crash the report'
 	option for testing the reports code.

	* src/register/gnome/gnucash-header.c (gnucash_header_event):
 	modify per changes to pointer_on_resize_line. Allow the user to
 	resize by double-clicking anywhere in a column heading.
	(pointer_on_resize_line): set the column with a pointer argument.
  	return true if on a resize line, false otherwise.
	(gnucash_header_init): initialize normal_cursor to NULL, which
	selects the default gdk cursor.

2000-02-18  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* src/register/gnome/gnucash-style.c (gnucash_style_layout_init):
 	Make only the description cell a FILL cell.

2000-02-18  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/engine/util.c (gnc_localeconv): Diane Trout's patch to set
	the default values with a function.

	* src/register/datecell.c (DateMV): validate change values longer
 	than a single character. Also, update the date value after a
 	non-accelerator change.

	* src/register/pricecell.c (PriceMV): validate change values
 	longer than a single character.

	* src/engine/util.c (gnc_localeconv): add in default values for
	the sign and currency positions if their values are out of range.

	* src/gnome/window-reconcile.c (recnRecalculateBalance): colorize
	the negative values in the summary frame.

2000-02-17  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/window-register.c (gnc_register_create_menu_bar):
 	added an edit menu with cut/copy/paste.
	(gnc_register_create_menu_bar): use 'blank' instead of 'new' to
 	describe the command to jump to the blank split. Use a new tooltip
 	too. Ditto for the popup menu and the toolbar.

	* Makefile.in: reversed order of gnucash linking so gnucash.gnome
	gets linked last, so it overides the motif version. Also, install
	the gnucash.desktop entry so gnucash appears in the gnome panel.

	* src/register/splitreg.c: right-align the xfer cells

	* src/register/gnome/gnucash-item-edit.c: handle selections the
 	gtk way with the gtk_selection_ routines. Grabbed this stuff from
 	gtkeditable and gtkentry.

	* src/register/gnome/gnucash-sheet.c: use the new selection handling
	code in the item editor to do cutting and pasting.

2000-02-16  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/register/gnome/gnucash-item-edit.c: added code to support
	real gtk selection handling. Adapted this from the gtk editable
	widget.

2000-02-15  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/dialog-transfer.c (gnc_xfer_dialog_create): allow the
 	user to resize the window

	* src/gnome/window-register.c: save and restore window size

	* src/gnome/window-main.c: save and restore window size

	* src/gnome/dialog-edit.c: save and restore window size

2000-02-14  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/dialog-add.c (accWindow): save and restore window size

	* many files: use the configured account separator

	* src/gnome/dialog-utils.c (gnc_get_account_separator): new function
	to get the account separator

	* src/scm/prefs.scm: new option for the account separator

2000-02-13  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/register/splitreg.c (configLayout): swap the xfer and desc
	cells. Add the debit and credit cells to the transaction cursor
	so we get totals.

	* src/register/quickfillcell.h: add a GUI-specific initializer.
	The motif version does nothing. The gnome version add a direct
	callback to handle auto-completion keystrokes.

	* src/register/table-allgui.c (gnc_table_direct_update): new
 	function for passing direct gui input to the table, and then the
 	cells.

	* src/register/basiccell.h: added a direct_update callback for
 	responding to raw gui input.

	* src/register/gnome/combocell-gnome.c (ComboDirect): add complete
 	to char and complete as far as possible functionality.

2000-02-12  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/window-register.c: add new account menu item

	* src/engine/Transaction.c (xaccTransCommitEdit): always check the
	split ordering on a commit. Only checking the transaction date won't
	work, because other fields in the transaction and the split affect
	the order.

	* src/engine/Account.c (xaccCheckDateOrder): use
 	xaccSplitDateOrder, the same routine as xaccAccountInsertSplit to
 	do the ordering.

	* src/register/table-allgui.c (gnc_table_modify_update): new
 	function, a direct gui callback.

2000-02-11  Robert Graham Merkel  <rgmerk@mira.net>

	* src/scm/report/transaction-report.scm
 	((gnc:tr-report-get-first-acc-name split-scm)): Fixed crash when
 	it's a lone split, and somebody's not using proper double-entry
 	accounting!

	* Doc: Extensive clean-up and documentation of new features,
 	including several new images.

2000-02-11  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/register/splitreg.c (xaccInitSplitRegister): change memo
 	cell to be a quickfill cell.

	* src/gnome/window-main.c (gnc_refresh_main_window): refresh all
	account trees.
	(gnc_ui_delete_account): remove account from all trees.

	* src/gnome/account-tree.c: added a global list of account trees.
  	added functions for refreshing all trees and deleting an account
 	from all trees.

	* src/register/basiccell.h: (and lots more files) added a cell
 	callback for getting the 'help' string of a cell. This uses a
	default which uses the value of the cell, if its not blank, and
	a "blank help" otherwise. The blank help string can be set on a
	per-cell basis.

	The date cell replaces the help callback with one that prints the
	date out in full, according to the current locale.

	The split register initialization sets a few of the cells with
	blank help values.

	Finally, the gnome register uses the help strings to set the
	status of the statusbar.

2000-02-10  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/engine/util.c (loglevel): print warnings and errors in
	all modules.

	* src/gnome/window-main.c: change the sensitivity of menu and
 	toolbar items that need a selected account.

	* src/gnome/dialog-edit.c (editAccWindow): allow dialog to be
 	resized

	* src/scm/extensions.scm: add code for a more flexible menu
 	definition process under guile. Comment out extensions menu
	stuff -- it's not complete.

	* src/register/gnome/gnucash-sheet.c (gnucash_button_press_event):
 	after moving, get the cursor position again before setting the
 	item editor cursor position because the cursor position may have
 	changed due to auto-mode rearrangement.

	* src/scm/prefs.scm:comment out locale-based date parsing

	* src/gnome/window-main.c (gnc_main_create_menus): modify the
 	names and order of the items per gnome standards.

	* src/scm/options.scm: Only save options that have been changed
	from their default values.

	* include/messages_i18n.h.in: removed periods from end of tooltips
	(gnome standard).

2000-02-09  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/window-reconcile.c (recnFinishCB): rewrote to be more
 	like the other top-level windows.

	* src/gnome/dialog-transfer.c (gnc_xfer_dialog): have the amount
 	entry grab focus.

2000-02-08  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/scm/options.scm: add a number-range option

	* src/scm/prefs.scm: add an option of number of register rows.

	* src/gnome/option-util.c: add utility functions for number
	range options.

	* src/gnome/dialog-options.c: implement number range options

	* src/scm/prefs.scm: added a register 'show all transactions'
 	option.

	* src/gnome/window-register.c (gnc_register_date_window): lookup
	guile 'show all' option to determine how to set the date range.

	* src/register/splitreg.c (xaccInitSplitRegister): Set the minimum
 	trailing zeros for share quantities to 0. All price cells are now
 	monetary values.

	* src/register/pricecell.c: modify to use integer arg for trailing
 	zeros. Add function for changing blank_zero option.

	* src/engine/util.c (PrintAmt): change the trailing zeros argument
	to an integer indicating the minimum number of trailing zeros to
	print.

	* src/register/gnome/gnucash-item-list.c: handle mouse wheel
 	scrolling from the clist.

2000-02-07  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/window-main.c (gnc_ui_refresh_statusbar): set the
 	color of deficit values to red in the main window status bar.

	* src/gnome/account-tree.c (gnc_account_tree_insert_row): only set
 	values as red if they are less than but not extremely close to
 	zero.

	* src/gnome/window-main.c (mainWindow): separate profit and asset
	labels in the status bar.

2000-02-07  Robert Graham Merkel  <rgmerk@mira.net>

	* src/gnome/global-options.c (gnc_options_dialog_help_cb): pops
	up a help window.

	* src/gnome/dialog-edit.c (gnc_ui_EditAccWindow_help_cb): callback
	now displays help page instead of placeholder dialog.

	* Docs/En/xacc-accountedit.html: New file explaining account edit
	dialog.

	* Docs/En/xacc-globalprefs.html: New file explaining preferences.

	* Docs/En/xacc-main.html: Added pointers to new help pages for
	account-edit and preferences dialog boxes.

	* src/top-level.h: Added new HH_* macros for new help pages for
	dialog boxes

2000-02-06  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/SplitLedger.c (xaccSRSaveRegEntry): don't refresh if the
	transfer account hasn't really changed.

	* src/gnome/window-adjust.c (gnc_ui_AdjBWindow_ok_cb): parse
 	amount with xaccParseAmount.  When the amount entry goes out of
 	focus, reformat the value with separators.

	* src/gnome/dialog-transfer.c: parse amount with xaccParseAmount.
	When the amount entry goes out of focus, reformat the value with
	separators.

	* src/gnome/reconcile-list.c (gnc_reconcile_list_fill): print the
 	amount with xaccPrintAmount, with separators.

	* src/gnome/window-reconcile.c (startRecnWindow): print the amount
 	with separators and parse it with xaccParseAmount. When the amount
 	entry goes out of focus, parse it and reformat it.

	* src/register/splitreg.c (xaccInitSplitRegister): set the stock
 	register cell options appropriately.

	* src/register/pricecell.c: add functions for setting the precision
	and trailing zeros option. removed the 'shares' option.

	* src/engine/util.c (xaccSPrintAmountGeneral): add a generalized
 	amount printing function.

	* src/gnome/window-register.c (gnc_register_date_window): add a
 	button to the date range window for setting the date range when
 	the user changes a date without 'enter' or 'double-click'.

	* src/engine/Account.c (xaccAccountGetFullName): moved this function
	from gnome to here to make it gui independent. Returns a malloc'd
	string with the fully-qualified name of the account using the given
	separator char.

2000-02-06  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* src/register/gnome/gnucash-header.c
 	(gnucash_header_auto_resize_column): Support for auto sizing.
	(gnucash_header_event): Double clicks on the resize lines will
 	auto resize the column to fit the text.

	* src/register/gnome/gnucash-sheet.c (compute_optimal_width): Use
 	the style layout to compute a good width for the sheet.

	* src/register/gnome/gnucash-header.c (gnucash_header_draw): Draw
 	the big rectangle correctly.
	(gnucash_header_reconfigure): Set the scroll region and header
 	width based on the size of the sheet, not the current style.

2000-02-05  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/register/splitreg.c (xaccInitSplitRegister): flag the share
 	quantities as such.
	(xaccInitSplitRegister): initialize the physical column to 0.

	* src/register/pricecell.c: get rid of the format string, add an
 	option for printing share quantities.

	* src/engine/Session.c (MakeHomeDir): just because ~/.gnucash
 	exists doens't mean ~/.gnucash/data exists.

	* src/scm/report/hello-world.scm: renamed from dummy.scm. Added
	documentation to the source code and additional help text in the
	report. This is intended to be an example for how to write reports.

	* src/gnome/window-report.c (reportAnchorCB): use gnome_url_show
	to display the anchors.

	* src/gnome/window-help.c (helpAnchorCB): use gnome_url_show to
	display the other anchor types.

	* src/gnome/dialog-utils.c: removed tooltip setting function. I was
	using tooltips the wrong way. Instead of having one tooltips object
	for each tip, you use one tooltips object for each logical group of
	tips, i.e., all the tips on a dialog. Also, changed the dialogs to
	use this method.

	* src/gnome/dialog-transfer.c: use labels with colons.

2000-02-04  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/scm/extensions.scm: removed cruft functions

	* src/register/gnome/gnucash-item-list.c (gnc_item_list_select):
 	set the focus row to the selected row.

	* src/register/gnome/combocell-gnome.c (ComboMV): auto-pop the
 	list on input, according to the option value below.

	* src/scm/prefs.scm: added option to auto-raise register list on
 	input.

2000-02-03  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/register/gnome/combocell-gnome.c (enterCombo): sort the list
 	before popping up.

	* src/engine/Query.c: do num sorting using numerical values where
 	possible.

	* src/register/gnome/gnucash-item-edit.c: added new functions for
	cutting, copying, and pasting the clipboard. We have to do this
	manually instead of relying in the gtk_entry, as it screws up the
	selection handling.

	* src/register/gnome/gnucash-sheet.c (gnucash_sheet_insert_cb):
 	fixed bug where new text was being copied incorrectly for
 	insertions longer than a character.

2000-02-02  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/register/gnome/gnucash-sheet.c (compute_optimal_width):
 	return optimal width if possible

	* src/register/gnome/gnucash-style.c
 	(gnucash_style_default_width): new function, compute optimal sheet
 	width

	* src/gnome/option-util.c: interfaced with the guile option callback
	mechanism.

	* Changed all existing callbacks to use guile callbacks. Touched
	many files.

	* src/scm/options.scm: added an option change callback mechanism.

2000-02-01  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/scm/options.scm: new file. Moved the general options code
	here. Modularized the options code.

2000-01-31  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/SplitLedger.c: use the last date entered in the blank split
	for the date of the new blank split.

	* src/scm/prefs.scm: use hash for storing options

2000-01-30  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/scm/bootstrap.scm.in: deleted hash-for-each. This is defined
	in slib2c6, which we are requiring anyway. Not the thunk for this
	should accept two args: the key and the value.

	* src/register/QuickFill.c: add sorting option to choose between
	LIFO and alphabetic orders.

2000-01-29  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/scm/bootstrap.scm.in: Used Matt Martin's guile error catching
	code to print errors from gnc:load.

2000-01-28  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* src/register/gnome/gnucash-header.c (pointer_on_resize_line): Fix a
	problem with the limits.  Now the last column is resizable.
	(gnucash_header_event): Check for which button is pressed/released.

2000-01-27  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/register/splitreg.c (xaccInitSplitRegister): set format of
 	price cell in stock registers to 4 decimal places.

	* src/register/gnome/gnucash-sheet.c (gnucash_sheet_scroll_event):
 	new function. Do mouse wheel scrolling in gnome register.

	* src/register/gnome/gnucash-style.c (gnucash_style_layout_init):
 	use printDate to find a date width using the current date style.
	(gnucash_style_layout_init): use i18n'd string to set transfer
	from field width.

	* Removed uses of nana and dependencies on nana.

	* src/scm/report/transaction-report.scm: change to handle new
 	reports.

	* src/scm/report/dummy.scm: change to handle new reports.

	* src/scm/report.scm: Change reports so that they have a function
 	which generates a new set of options. Change the report running
 	functions to accomodate this.

	* src/FileDialog.c: avoid showing multiple error dialogs.

	* src/guile/gfec.c (gfec_catcher): new file with functions for
 	running scheme code with error handlers. Grabbed this off the
 	guile faq and made a few mods.

	* src/gnome/window-report.c: modify to use the new gfec routines.

2000-01-27  Robert Graham Merkel  <rgmerk@mira.net>

	* src/scm/report/transaction-report.scm
	(tr-report-primary-key-op),(tr-report-primary-order-op)
	(tr-report-secondary-key-op),(tr-report-secondary-order-op):
	new options controlling sorting order for transaction report
	display.
	(gnc:tr-report-get-first-acc-name): get the name of the first
	"other" account" of a split's transaction
	(gnc:sort-predicate-component): return a predicate for comparing
	two split-scm's on a certain component
	(gnc:tr-report-make-sort-predicate): process sorting options,
	return a corresponding sorting predicate
	"Account Transactions" report: added sorting.

2000-01-25  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/window-register.c (regRefresh): refresh the window name

	* src/gnome/dialog-edit.c: Rob Merkel's patch to reparent accounts.

	* src/engine/Account.c (xaccAccountHasAncestor): new function to
	determine whether an account has another as an ancestor.

	* src/gnome/account-tree.c (gnc_account_tree_set_filter): add a
 	filter function to an account tree to select a subset of accounts.

	* src/engine/Query.c: some new functions for setting the date
 	ranges.

	* src/gnome/window-register.c: add 'show earliest' and 'show
 	latest' options to the date range window.

2000-01-25  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* src/register/gnome/gnucash-grid.c (gnucash_grid_init):
 	Initialize the fonts here.

	* src/register/gnome/gnucash-style.c
 	(gnucash_sheet_style_compile): Use sheet->grid->normal_font for
 	all the computations.  style->fonts[][] is now only used for
 	drawing in gnucash-grid, etc. when it's non-NULL.

2000-01-24  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/register/splitreg.c (xaccInitSplitRegister): make the action
	cell accept strings not in the list.

	* src/register/gnome/combocell-gnome.c (xaccComboCellSetStrict):
	new function that determines whether the combo accepts strings
	not in the list. Defaults to 'does not accept'.


2000-01-23  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* src/register/gnome/gnucash-style.c: Many functions touched.
  	Fairly extensive changes to how the layouts and dimensions are
 	handled.  We now lump together cursors which should have same
 	dimensions (e.g. all the single line cursors have the same layout
 	and dimension data).

2000-01-21  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/register/gnome/gnucash-sheet.c
 	(gnucash_sheet_key_press_event): oh, what a hack! The extra stuff
 	is to make sure the selection is changed appropriately according
 	to the key that is pressed. Some of the logic is extracted from
 	gtkentry.c so the behavior is similar. We have to do this because
 	the entry widget is not realized and thus does not change its
 	selection as usual. However, we can't realize it, see the
 	explanation below.

	* src/register/gnome/combocell-gnome.c: added quickfilling

	* src/register/quickfillcell.c (quick_modify): new code for gnome,
	old code for motif. motif doesn't support the cursor position and
	selection args.

	* src/register/gnome/gnucash-sheet.c (gnucash_sheet_new): ok,
 	*don't* put the entry in a widget. We can't have it realized
 	because it screws up the selection changes during the insert/
 	delete callbacks. We're going to have to fake the other
 	functionality.

	* src/register/QuickFill.c: make quickfill work on non-alphabet
	characters.
	(xaccGetQuickFillStr): new function search for a prefix match on
	more than one character at a time.

	* src/register/gnome/gnucash-sheet.c
 	(gnucash_button_release_event): new function to track button
 	release for dragging purposes.
	(gnucash_motion_event): new function for tracking mouse movement
 	and updating the selection region.
	(gnucash_sheet_init): initialize top_block_offset
	(gnucash_sheet_set_top_row): adjust the new top row to show as many
	rows as possible.
	(gnucash_sheet_vadjustment_value_changed): compute visible range
	after adjusting top block in smooth scrolling.
	(gnucash_sheet_compute_visible_range): start at the top_block_offset
	(gnucash_sheet_update_adjustments): scroll faster

2000-01-20  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/register/gnome/gnucash-sheet.c (gnucash_button_press_event):
 	if we're mousing in the current cell, don't bother going through
 	modify_update and all that jazz, but only if we are currently
 	editing. This makes sure the reconcile cell still gets its enters.

	* src/register/gnome/gnucash-item-edit.c
 	(item_edit_set_cursor_pos): add option to extend selection.

2000-01-20  Robert Graham Merkel  <rgmerk@mira.net>

	* src/scm/report/transaction-report.scm: Fixed date bug, ensuring
	"to" date is treated as a <= rather than a <.

2000-01-20  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/register/gnome/gnucash-sheet.c (gnucash_sheet_new): put the
	editing entry into a canvas item so it will get realized. It needs
	to be realized for full functionality.
	(gnucash_sheet_modify_current_cell): add new args to modify update.
	(gnucash_sheet_insert_cb): new args for modify update
	(gnucash_sheet_delete_cb): new args for modify update

	* src/register/gnome/gnucash-item-edit.c (item_edit_destroy): only
 	disconnect if the editor hasn't been destroyed.

	* src/register/gnome/gnucash-sheet.c
 	(gnucash_sheet_activate_cursor_cell): added new args for enter
 	update. change entry widget appropriately.

	* src/register/table-allgui.c (gnc_table_enter_update): added args
 	to set cursor position and highlited selection.

	* src/scm/prefs.scm (gnc:save-options): truncate the options file
 	when opening.

	* src/register/gnome/gnucash-item-edit.c (item_edit_draw_info):
 	calc regions for the highlited portion of the text.
	(item_edit_draw): draw the hightlited portion of the text.

2000-01-19  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/guile/gnucash.c (gnucash_lowlev_app_init): use DEBUG and PERR
	instead of print(stderr, ...);

	* src/scm/prefs.scm: new technique for saving options. Easier
	to generalize to other option databases.

	* src/gnome/window-html.c (gnc_html_load): set button states at
	the beginning, in case report doesn't work.

	* src/scm/report.scm: catch exceptions in executing the report

	* src/gnome/window-report.c (reportJumpCB): report errors that occur
	in executing the report.

	* src/register/table-allgui.c (gnc_table_traverse_update): use the
	return value consistently to indicate no move.

	* src/scm/path.scm (gnc:make-home-dir): new function. creates gnc dir

	* src/scm/main.scm: don't abort if user config file fails

	* src/scm/prefs.scm: make options save to ~/.gnucash/config.auto

	* src/gnome/dialog-options.c (gnc_option_create_account_widget):
 	if not multiple selection, use browse mode so user has to select
 	an account.
	(gnc_option_set_ui_widget): when making account list widget, connect
	the signals after the value has been set so the dialog isn't already
	in a changed state.

2000-01-17  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/scm/bootstrap.scm.in: add a test for slib >= 2c6.

2000-01-16  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/dialog-add.c (gnc_ui_accWindow_list_box_create): Put
 	the account types in a scrolled window.
	(gnc_ui_accWindow_tree_select): scroll the list types when a new
 	type is selected.
	(accWindow): remember window size and recreate it.

	* src/engine/util.c (xaccParseQIFAmount): rename this from
	xaccParseUSAmount to explictly reflect its only usage. Modify
	the parsing to guess what symbol is used as a decimal point.

2000-01-15  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/window-report.c (gnc_report_export): add error checking
	and i18n messages.

	* src/gnome/window-html.c (gnc_html_load): set toolbar button
	states at end.

2000-01-15  Robert Graham Merkel  <rgmerk@mira.net>

	* src/gnome/window-report.c (gnc_report_export): new function to
 	allow generated HTML reports to be exported to a file.
	(reportWindow): added a button to the toolbar for exporting HTML

2000-01-15  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* Makefile.config.finish: Get rid of xemacs mode comments.

	* configure.in: Move the commands at the end of configure.in into
 	the EXTRA-CMDS section of AC_OUTPUT so that config.status will
 	redo them. Don't bother defining GNC_RUNTIME_* vars as they are
	not substituted using AC_OUTPUT.

2000-01-15  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* src/register/gnome/gnucash-style.c (struct   _CellLayoutInfo):
	Add new flags for attributes the user can change interactively.


	* src/register/gnome/gnucash-style.c (compute_cell_origins_[xy]):
	Precompute these since they stay fixed until dimensions change.

	* src/register/gnome/gnucash-header.c (gnucash_header_draw):
	Be sure rect.width is non-negative.  Also, we draw all the
	rows in the header now.
	(gnucash_header_set_arg): Remove the ARG_ROW argument.
	For ARG_CURSOR_TYPE, only reconfigure the header
	when the type changes.  This optimizes the drawing a bit.
	(gnucash_header_reconfigure): We're drawing all rows now, so
	use the proper height.  
	(gnucash_header_event): Implement resizing of columns.  This is
	a bit rough in places, because we have to take cell alignments
	into account.  Need to work more on the styles.
	(gnucash_header_draw): Support dynamic resizing in the header,
	to give the user feedback during the resize.

	* src/register/gnome/gnucash-grid.c (gnucash_grid_draw): Optimize
	so it draws only the needed cells, not the entire row.

	* src/register/gnome/gnucash-sheet.c (gnucash_sheet_init): Add a
 	compile time option for smooth vertical scrolling.  Later we can
 	add user selectable scrolling if we decide it's worth it.
	(gnucash_sheet_make_cell_visible): support smooth scrolling.
	(gnucash_sheet_update_adjustments): ditto
	(gnucash_sheet_vadjustment_value_changed): ditto
	(gnucash_sheet_create): ditto
	(gnucash_sheet_y_pixel_to_block): New function.  Convert a canvas
 	y-coordinate to a virtual row.

2000-01-14  Robert Graham Merkel  <rgmerk@mira.net>

	* src/scm/report/transaction-report.scm: Added initial balance
	and summary displays.

2000-01-12  Robert Graham Merkel  <rgmerk@mira.net>

	* src/scm/report/transaction-report.scm: Added balance field,
	running totals, patched for empty-second-split case, fixed
	other bugs, added documentation.

2000-01-10  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* Apply Jan Schrage's doc patch.

	* src/gnome/window-reconcile.c (recnWindow): tighter arrangement
	of the buttons.

	* src/g-wrap/gnc.gwp: removed wrap of private engine function.

	* src/engine/util.c (gnc_localeconv): new function to get a lconv
	structure for locale info.
	(PrintAmt): add argument which determines whether amounts are
	monetary or not. Use locale information to get separators.
	(xaccSPrintAmount): first cut at printing i18n'd amounts.
	(xaccParseAmount): new function for parsing i18n'd amounts,
	both monetary and non-monetary.

	* src/register/splitreg.c (xaccInitSplitRegister): let the price
 	cell format be the default monetary format. Set the shares cell
 	and, for stock registers, the credit and debit cells to
 	non-monetary cells.

	* src/register/pricecell.c (xaccSetPriceCellMonetary): new
 	function for setting 'monetary' member.

	* src/register/pricecell.h: add a 'monetary' boolean member
	of price cells which indicate whether the value should be
	parsed as money or not.

2000-01-09  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/register/splitreg.c: print price cells in a monetary format,
 	not 4 place decimal notation.

	* src/gnome/window-register.c (regRefresh): print separators in
 	the amounts at the bottom of the register window.

	* Applied Ken Yamaguchi's QIF import patch.

	* src/scm/prefs.scm: modified the account list option so
	that it returns the default-getter value until explicitly
	set.

2000-01-09  Robert Graham Merkel  <rgmerk@mira.net>

	* src/scm/report/transaction-report.scm: Added a pile of stuff,
	should now produce a HTML formatted report containing basic info.
	Unfortunately, crashes gtk-xmhtml at this stage.

2000-01-08  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/scm/bootstrap.scm.in: Added a check for slib.

2000-01-07  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* make-gnucash-patch: changed aclocal.m4 to lib/g-wrap/aclocal.m4
 	in the exclude list, so people can patch the main aclocal.m4 file.

2000-01-07  Jan Schrage <jan.schrage@urz.uni-heidelberg.de>

	* configure.in: for --opt-style-install add $prefix/include
	and $prefix/lib to $CPPFLAGS and $CFLAGS respectively to fix
	broken check for nana.

2000-01-06  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* various and sundry: apply Laurent P{'e}lecq's i18n with gettext
 	patch. Move raw strings from gnome code into message database.

	* src/gnome/window-report.c: modify for changes to window-html.
	Make sure properties dialog callback only changes the window if
	we are on that page.

	* src/gnome/window-help.c: modify for the changes to window-html

	* src/gnome/window-html.c: enhance window. Titles and buttons
	are now associated with each history item, not the whole window.

	* src/gnome/dialog-options.c: added support for account list
	guile options.

2000-01-05  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/option-util.c: new functions for sending and receiving
 	lists of accounts to guile.

	* src/gnome/account-tree.c: modified this widget so that
	it keeps track of a list of selected accounts. Normal mode
	is still single selection.

2000-01-04  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/dialog-add.c (gnc_ui_accWindow_list_select_cb):
 	prevent user from selecting illegal account types.

2000-01-02  Peter Pointner  <peter@wuzel.m.isar.de>

	* configure.in: disable qt build by default. --enable-qt enables it.

	* Makefile.in: new targets qt.static and qt.disable

	* make-gnucash-patch: exclude *.moc

	* src/g-wrap/gnc.gwp (current-gnc-compile-flavor): add flavor qt.static

	* src/qt/* and src/register/*-qt.*: assorted changes to make the
	  qt version compile. 

2000-01-02  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/window-register.c: redid this window. Put style, sort
 	order, and date range into menu bar. Put toolbar under menu.
	Added status bar at bottom.

	* src/register/table-allgui.c (xaccVerifyCursorPosition): return
 	boolean indicating whether cursor was repositioned.
	(wrapVerifyCursorPosition): use return value from above in
 	deciding whether to refresh UI.

	* src/SplitLedger.c (xaccSRCancelCursorSplitChanges): move off of
 	an EXACT_ONLY cell, if on one.

2000-01-01  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/register/splitreg.h: uses ints, not shorts for values.

	* src/SplitLedger.c (xaccSRLoadRegister): use the function below
 	to find the cell where to land on.
	(xaccSRLoadRegister): fix a bug with auto mode to single/double
 	mode transition.

	* src/register/table-allgui.c (gnc_table_find_valid_cell_horiz):
	new function. Find a valid cell in the row, starting at the
	given coordinates and fanning out.

	* src/register/basiccell.h: add a new kind of io_flag.
	XACC_CELL_ALLOW_EXACT_ONLY means a cell can only be entered
	when the user specifically indicates that cell. Right now,
	this means only a mouse pointer clicked on that cell. This
	is used to prevent the reconcile cell from acting strangely.

	* src/register/table-allgui.c (gnc_table_traverse_update): do left
 	traversals a little better.

	* src/gnome/window-html.c (htmlKeyCB): handle keyboard horizontal
 	scrolling.

1999-12-31  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* Code cleanup with -Wall. Deleted unused variables. Added missing
 	#include's and missing function declarations.

	* src/engine/QIFIO.c (FavorDateType): Christopher Browne's QIF
 	import patch.

	* configure.in: Albert Chin-A-Young's patch to configure.in for
 	perl config.

	* src/MultiLedger.c: nix xaccRegisterCountHack.
	It is no longer needed.

	* Docs/En/xacc-about.html: added contributors.

	* make-gnucash-patch: new script. Make a patch for submission.

	* README: added contributors. Added sections on gnucash
	development and submitting patches.

1999-12-30  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/SplitLedger.c (xaccSRGetCurrentTrans): Fix error messages.

1999-12-29  Peter Pointner  <peter@wuzel.m.isar.de>

	* src/motif/FileBox.c (closeBoxCB): reset fileName only if !done.
	  This fixes the FileBox problems with lesstiff 0.89.1, at least
	  for me.

	* configure.in: change CPPFLAGS used to search for gtk-xmhtml  

1999-12-26  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/window-report.c (reportWindow): Add a properties
 	button to the html window icon bar to allow the report parameters
 	dialog to be brought up.
	(reportWindow): Add a title to the properties dialog.

	* src/gnome/window-html.c (htmlWindow): Add arguments to allow the
 	caller to add its own icons to the window.

1999-12-25  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/global-options.c (gnc_show_options_dialog): Added
 	title.

	* src/gnome/window-main.c: removed eperl reports menu items

	* src/gnome/window-report.c: new file. Report-specific gnome
	gui code will reside here.

1999-12-24  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/window-html.c: take out help and report specific code.

	* src/gnome/dialog-options.c: removed global options code.
	These routines now with with arbitrary options databases.

	* src/gnome/global-options.c: new function. global options are
 	implemented here. This uses dialog-options and option-util
 	functions.

	* src/gnome/option-util.c: removed global options code.

	* src/gnome/window-register.c (gnc_build_ledger_style_menu): set
 	the style menu to the default on creation.

1999-12-23  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/account-tree.c (gnc_account_tree_refresh): thaw after
 	all changes.

1999-12-22  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/option-util.c: many new functions. Rewrote this to
	add the concept of option databases, a data structure which holds
	a collection of options and allows access to them. This will be
	used to hold, e.g., options for a report window. The old functions
	now just call the new ones with the 'global' configuation option
	database as the database argument.

	* src/gnome/dialog-report.c: Rename dialog-trans-report.? to
	dialog-report.?. This will construct a generic report dialog.

1999-12-21  Robert Graham Merkel  <rgmerk@mira.net>

	* src/gnome/dialog-trans-report.c: New file.  GNOME code for
 	creating a dialog box for information on the transaction report.
  	At the moment only contains a stub for the actual dialog box code.

	* src/gnome/dialog-trans-report.h: New file.  Headers for 
	 the dialog box stuff, obviously!

	* src/gnome/Makefile.in: modified to compile dialog-trans-report.c

1999-12-21  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/window-reconcile.c: enhance this window with
	new, edit, and delete transaction buttons.

1999-12-20  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* src/register/gnome/gnucash-sheet.c
 	(gnucash_sheet_size_allocate): Configure the item_editor on a
 	resize.

	* src/register/gnome/gnucash-cursor.c
 	(gnucash_cursor_get_pixel_coords): Don't use the horizontal scroll
 	offset.

	* src/register/gnome/gnucash-item-edit.c
 	(item_edit_get_pixel_coords): Ditto.

	* src/register/gnome/gnucash-item-list.c (gnc_item_list_new): Set
 	the "x" coordinate on creation.

1999-12-20  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/window-register.c (regWindowLedger): get the default
	register type guile option to set the register style.
	(regRefresh): set the toolbar button display based on the guile
	option value.

1999-12-19  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/MultiLedger.c (xaccRegisterRefreshAllGUI): new function.
	call gui refresh on all registers.

	* src/MultiLedger.h: remove unecessary externs.

1999-12-19  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* src/register/gnome/gnucash-sheet.c
 	(gnucash_sheet_update_adjustments): Update the horizontal
 	adjustments, too.
	(gnucash_register_new): Attach the horizontal scrollbar to the
 	horizontal adjustment.

	* src/register/gnome/gnucash-header.c (gnucash_header_set_arg):
 	Hook up the hadjustment from the sheet so that they scroll
 	horizontally together.

1999-12-19  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/engine/util.c: applied Grant Likely's patch to the number
	formatting routines.

	* src/register/splitreg.c: applied Grant Likely's patch to make
 	stock register have 4 decimal places of accuracy.

	* Applied Christopher Brown's html and QIFIO.c patch.

1999-12-19  Robert Graham Merkel  <rgmerk@mira.net>

	* src/src/report/transaction-report.scm: New file. Will contain
 	code for doing a transaction report on an account. At this stage
 	all it does is display unformatted raw scheme lists.
 	
	* README.guile-hackers: Added general information about Scheme and
 	a pointer to net resources about it. Also explained a little
 	about g-wrap and gave a pointer to the documentation for it.

1999-12-18  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* src/register/gnome/gnucash-header.c
 	(gnucash_header_reconfigure): Don't set the width of the widget,
 	let it find it's own width.

	* src/register/gnome/gnucash-style.c
 	(gnucash_sheet_style_set_dimensions): Reworked extensively.  It
 	now tries very hard to fit the cursors in the register window.
  	Supports a number of layout options for the cursors, as detailed
 	in the source.

1999-12-18  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/window-register.c (gnc_register_create_tool_bar):
 	Don't cause a legister refresh.

1999-12-17  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/dialog-edit.c (gnc_ui_EditAccWindow_ok_cb): refresh
 	all the registers.

	* src/gnome/dialog-add.c (gnc_ui_accWindow_create_account):
 	refresh all the registers.

	* src/gnome/window-register.c (regRefresh): reload the transfer
 	cells.

	* src/SplitLedger.c (xaccSRLoadXferCells): new function. Load the
	transfer cells in a split register.

	* src/register/gnome/combocell-gnome.c (xaccClearComboCellMenu):
 	new function. clear all items in the combocell menu.

1999-12-16  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* src/register/table-allgui.c (gnc_table_traverse_update): Use the
	exit flags from the cellblock to decide how to set
	exit_register, and don't change entries in the traverse arrays
	to positive.

	* src/register/splitreg.c (configTraverse): Mark all the exit rows
	and columns, too.

	* src/register/cellblock.h: Add variables to the CellBlock struct
	that flag the exit cells.  We can't use negative entries in the
	traverse arrays anymore, since left traverses sometimes need
	valid negative directions.

1999-12-16  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/register/pricecell.c (xaccPriceCellPrintValue): new
 	function.  return a pointer to a static string buffer with the
	cell amount printed.
	(xaccSetPriceCellValue): simplify with above function.
	(PriceLeave): new leave callback for price cells. Pretty-prints
	cell value using xaccPriceCellPrintValue.

	* src/register/gnome/gnucash-sheet.c (gnucash_sheet_cursor_move):
 	have this function take physical instead of virtual coordinates.
  	This function now 'does the move' using wrapVerifyCursorPosition.
	It has smarts that were in the three functions below.
	It returns TRUE if the current cell changed.
	(gnucash_button_press_event): simplify
	(gnucash_sheet_key_press_event): simplify
	(gnucash_sheet_goto_virt_row_col): simplify

1999-12-15  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/register/table-allgui.c (gnc_table_traverse_update): take
 	out the reverify fields. These are unnecessary for the auto modes
 	(at least for gnome) and complicate the leave semantics.

	* src/SplitLedger.c (xaccSRGetCurrentTrans): use the register
 	physical row and not the table. needed for auto mode movement.

	* src/register/table-allgui.c (gnc_table_leave_update): do the
 	wrapverify after we check for changes. I'm not sure if wrapverify
 	could change the outcome of this, but doing the check after the
 	wrap verify makes no sense since the row and col values aren't
 	meaningful anymore.

	* src/register/gnome/gnucash-sheet.c
 	(gnucash_sheet_deactivate_cursor_cell): always call the leave
 	update, even for "bad" locations. We need the wrap verify that
 	happens in the gnc_table_leave_update.

1999-12-15  Robert Graham Merkel  <rgmerk@mira.net>

	* src/gnome/dialog-add.c (xaccSetDefaultNewaccountCurrency): Added
 	an interface to set the default currency for new accounts.

	* src/scm/prefs.scm (gnc:make-string-option) added a new option
 	generator for strings, used this to add a "default new account
 	currency" option

	* src/gnome/top-level.c (gnc_configure_newacc_currency_cb)
 	callback to update the default currency when options are changed
	(default_configure_newacc_currency) does the work of updating
	(gnucash_ui_init) registered the new callback

1999-12-14  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/register/table-allgui.c (gnc_table_traverse_update): a fix
 	for the auto modes.

	* src/SplitLedger.c (xaccSRCountRows): Look for the cursor
 	position using the transaction, as well as the split. Useful when
 	changing modes when you are on a blank split in multi-line.
	(xaccSRGetCurrentTrans): new function. Gets current transaction.
  	Works when you are on blank splits as well.
	(LedgerTraverse): save the old register values and then restore
 	them.

1999-12-13  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/register/gnome/gnucash-header.c
 	(gnucash_header_reconfigure): check for a valid header row before
 	proceeding.

1999-12-13  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* src/register/gnome/gnucash-cursor.c (gnucash_cursor_set): Set
 	the type and row arguments in the header.

	* src/register/gnome/gnucash-header.c (gnucash_header_draw): Tweak
 	the coords on the separator line a bit.  Draw the header based on
 	header->type and header->row.
	(gnucash_header_set_arg): Add two new arguments to support setting
 	the type of the header from the current cursor and the row within
 	the cursor to draw.

	* src/register/gnome/gnucash-style.c
 	(gnucash_sheet_style_compile): Set the header font.

1999-12-13  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/option-util.c (gnc_lookup_multichoice_option): Rob
 	Merkel's patch.

	* src/engine/date.c (printDate): Rob Merkel's patch to i18n date
 	formats.

	* src/gnome/top-level.c (gnc_configure_date_format): Rob Merkel's
	patch to i18n date formats.

1999-12-12  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* src/register/table-allgui.c (gnc_table_traverse_update): Put an
 	assert(0) in the default case, since now we handle all possible
 	cases.

	* src/register/gnome/gnucash-sheet.c
 	(gnucash_sheet_key_press_event): Remove hack to wrap around when
 	moving the cursor.  splitreg.c takes care of this, after a
 	fashion.

1999-12-12  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/register/gnome/combocell-gnome.c (disconnect_list_signals):
 	if the list has been destroyed, don't bother.
	(connect_list_signals): ditto.

1999-12-10  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* src/register/splitreg.c (configTraverse): Configure left
 	traverses, too.

	* src/register/cellblock.[c,h] (xaccInitCellBlock): Allocate left
 	traverse matrices.
 	(FreeCellBlockMem): Free left traverse matrices.
 	(xaccNextLeft): New function.

	* src/register/table-allgui.c (gnc_table_traverse_update): Add
 	support for left traverses.

1999-12-10  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/window-register.c (jump_cb): new callback. Used to
 	jump to 'other' account.

	* src/gnome/option-util.c: modify multichoice
 	functions. multichoice options are now a list of vectors,
	where each vector contains the value, name, and description.

	* src/gnome/dialog-options.c (gnc_option_set_ui_widget): Rob
 	Merkel's patch to add the option name to a multichoice option.

1999-12-09  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/dialog-utils.c (gnc_build_option_menu): change this
 	function so that the callback includes the index of the selection
 	as well as the user_data.

	* src/gnome/option-util.c
 	(gnc_option_value_num_permissible_values): new function. return #
 	of permissible values.
	(gnc_option_value_permissible_value_index): new function. search
 	for SCM value in permissible value list.
	(gnc_option_value_permissible_value_name): new function. return
 	name of indexth permissible value.
	(gnc_option_value_permissible_value_help): new function. return
 	help of indexth permissible value.

	* src/gnome/dialog-options.c (gnc_option_set_ui_value): add
 	multichoice option.
	(gnc_option_get_ui_value): add multichoice option.
	(gnc_option_multichoice_cb): new function. callback for
 	multichoice buttons. We use an object data with key
 	"gnc_multichoice_index" to store the index with the option menu.
	(gnc_option_create_multichoice_widget): new function. create the
 	widget for multichoice options.
	(gnc_option_set_ui_widget): add multichoice option.

	* src/register/gnome/gnucash-sheet.c
 	(gnucash_sheet_block_destroy): Don't free the entries and colors,
 	that is done by gnucash_sheet_block_clear_entries now.
	(gnucash_sheet_block_clear_entries): Set the freed pointers to
 	NULL for safety.

1999-12-09  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* src/register/gnome/gnucash-color.c (color_hash): The argument is
 	an argb, not a GdkColor. So we'll just use its value directly.
  	This fixes a bug in that we were getting lots of failed color
 	lookups in the hash table, and therefore lots of redundant
 	insertions.

	* src/register/gnome/gnucash-sheet.c
 	(gnucash_sheet_block_clear_entries): Free entries, fg_colors,
 	bg_colors here. We were leaking [fg,bg]_colors.


1999-12-09  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/window-register.c (regWindowLedger): set the window
	policy to allow shrinking and growing.

	* src/SplitLedger.c (xaccSRSaveRegEntry): change the memo
	before you create the 'other' split, so it gets the same memo.
	Also, if we are committing the blank split, insert it into the
	account before we create the 'other' split, so the other split
	can get a parent account, too.

1999-12-08  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/scm/main.scm (gnc:ui-finish): destroy the ui subwindows
	before doing a file-query-save. The register windows need to
	be closed before saving, in case there are edited transactions.

	* src/gnome/top-level.c (gnc_ui_destroy_all_subwindows): new
 	function.  used by guile to destroy all non-main windows.

	* src/gnome/window-help.c (gnc_ui_destroy_html_windows): new
 	function.  destroy any help or report windows open.

1999-12-08  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* src/register/gnome/gnucash-cursor.c (gnucash_item_cursor_draw):
 	Draw an inner rectangle in the cell cursor.  This balances the
 	cursor top/bottom versus sides, and fixes some ugliness especially
 	in double line mode.

1999-12-08  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/SplitLedger.c (xaccSRLoadRegister): restore original
 	position a bit more accurately.

1999-12-07  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/scm/text-export.scm (gnc:account-transactions-export-as-text):
	return #f as value so the traversal keeps going. (See Group.h).

	* src/g-wrap/gnc-helpers.c: use gh_long2scm instead of the
	long long version. This is incorrect for very large values,
	but longlong doesn't seem to be working right now.

	* src/engine/LedgerUtils.c (accListHasAccount): new function.
	search for account in list.

	* src/MultiLedger.c: Only add the leader if it wasn't in the list.

	* src/gnome/window-register.c (gnc_register_create_menu_bar):
	Added an option to scrub the account. Changed Register menu
	to Account menu.

	* src/engine/Transaction.c (MARK_SPLIT): mark the account group
	as not saved. Ensures we get a "do you want to save" dialog.

	* src/register/gnome/gnucash-sheet.c (compute_optimal_height):
	request height for DEFAULT_REGISTER_ROWS rows.

	* src/gnome/window-register.c (deleteCB): fancy deletes.

1999-12-06  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/SplitLedger.c (xaccSRSaveRegEntry): Insert the blank split
 	into the account when it is committed, not when it is created.
  	Otherwise, the blank split gets saved to a file if you save with
 	an open register. Also, it gets stuck in the reconcile window if
 	you open that with an open register.

	* src/register/pricecell.c (xaccSetDebCredCellValue): simplify
	and fix value setting bug.

	* src/SplitLedger.c (xaccSRCancelCursorTransChanges): new
 	function. Cancel the changes to the current transaction.

	* src/motif/RegWindow.c (cancelCB): use SR functions instead.

	* src/g-wrap/gnc.gwp: add wrapper for xaccGroupGetBalance

	* src/gnome/window-register.c (regWindowLedger): take out the size
 	code altogether.

1999-12-06  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* src/register/gnome/gnucash-sheet.c (DEFAULT_REGISTER_WIDTH):
 	Increase this a little, so at least a checking account register is
 	drawn correctly.  This is a hack for now anyway until the
 	computations in gnucash-style.c are reworked.

	* src/gnome/window-register.c (regWindowLedger): Comment out the
 	call to gtk_widget_set_usize (), so the register window finds it's
 	own natural size.

	* src/register/gnome/gnucash-header.c
 	(gnucash_header_reconfigure): Compute w, h correctly.

1999-12-05  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/window-register.c (closeCB): Query the user as to
 	whether or not to save a changed transaction.

	* src/MultiLedger.c (xaccLedgerDisplayClose): Only refresh
	if there were really changes.

	* src/SplitLedger.c (LedgerDestroy): Paranoia checks.

	* src/gnome/window-register.c (regWindowLedger): catch the register
	"activate_cursor" signal. Upon receipt, record the transaction and
	move to the next virtual row.

	* src/register/gnome/gnucash-sheet.c
 	(gnucash_register_goto_next_virt_row): new function. Cause the
	register cursor to advance to the next virtual row.

	* src/register/gnome/gnucash-sheet.h: Add a "activate_cursor"
 	callback to the register that is emitted when the user pressed
 	return.

1999-12-04  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/window-main.c (gnc_ui_mainWindow_scrub): new function.
  	Scrub the current account.
	(gnc_ui_mainWindow_toolbar_open_subs): new function.
	Open subaccounts.

	* src/gnome/window-register.c (gnc_register_raise): new function.
	Cause the given register window to be raised to the top.

	* src/gnome/scripts_menu.c (gnc_extensions_menu_add_item): We have
 	to register the scheme scripts to make sure they aren't
 	garbage-collected.
	(gnc_extensions_shutdown): New function. Call when shutting down
	to free memory structures and unregister scheme scripts.

	* src/gnome/window-register.c (gnc_register_create_popup_menu): new
	function. Create a popup menu for the register.
	(regWindowLedger): Add the popup menu to the register.

	* src/register/gnome/gnucash-sheet.c (gnucash_button_press_event):
	return FALSE for unused events so they are passed up the hierarchy.

	* src/gnome/window-adjust.c (adjBWindow): use fully qualified
	account name in window title.

	* src/gnome/window-register.c (regWindowLedger): use fully
 	qualified name in the title of the window.

	* src/gnome/dialog-utils.c (gnc_ui_get_account_full_name): new
 	function. Construct the fully-qualified account name using the
	given separator string.

	* src/engine/Account.c (xaccAccountGetParentAccount): new function.
	Return the parent account of an account.

	* src/engine/Group.c (xaccGroupGetParentAccount): new function.
	Return the parent account of a group.

	* src/register/gnome/gnucash-sheet.c (gnucash_sheet_key_press_event):
	respond to keypad directional keys.

1999-12-03  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/SplitLedger.c (xaccSRLoadRegister): When we refresh, look
 	for the pending transaction. If we don't find it, clear the
 	pending transaction to prevent it being committed later.

	* src/g-wrap/gnc.gwp: added binding for reportWindowDirect

	* src/gnome/window-register.c (helpCB): help window should not
	be parented.

	* src/gnome/window-main.c (gnc_ui_help_cb): help window should
	not be parented.
	(gnc_ui_reports_cb): reports window should not be parented.

	* src/engine/Transaction.c (xaccTransBeginEdit): Check for an
 	already open transaction.
	(xaccTransIsOpen): new function. returns true if transaction
	is open for editing.

	* src/gnome/window-register.c (regWindowLedger): Use a gnome dock
 	to hold the window contents. This is more flexible.
	(gnc_register_create_tool_bar): use graphical buttons. Also, don't
 	create the handle box, the gnome dock item will handle that.
	(gnc_register_create_menu_bar): don't create the handle box.

	* src/reports/Sheet.c: Rob Merkel's patch for locating eperl

	* src/gnome/account-tree.c (gnc_account_tree_refresh): tighter
 	bounds on adjustment value. Prevents quirks when refreshing to
	a smaller number of accounts.

	* configure.in: Rob Merkel's eperl and gtkxmhtml build patches

	* Makefile.in: Rob Merkel's patch to enforce gtkxmhtml requirement

	* src/gnome/window-register.c (deleteCB): use
 	xaccSRDeleteCurrentSplit to delete the split.

1999-12-02  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/register/gnome/combocell-gnome.c (moveCombo): disconnect
	the list signals.

	* src/SplitLedger.c (LedgerMoveCursor): update cursor_phys_row and
 	cursor_virt_row in the SplitRegiter.
	(xaccSRDeleteCurrentSplit): new function. delete the current split
 	in the register.
	(xaccSRCountRows): don't move the saved physical and virtual rows
	if the current split was NULL.

	* Makefile.in: Added Tyson Dowd's rules to rerun autoconf
	and configure when needed.

1999-12-01  Rob Browning  <rlb@cs.utexas.edu>

	* src/scm/txn-create.scm: remove trailing garbage.

	* src/scm/srfi: new directory containing source for various Scheme
	Requests for Implementation.  We now have srfi-8 and srfi-1.
	These are very useful.  Docs are available at
	http://srfi.schemers.org/.

	* src/scm/report/folio.scm: new file implementing
	Reports/report-folio.phtml.  Not finished, but not loaded either.

	* src/scm/report/dummy.scm: new file to test the report system.
	Shows the current date.

	* src/scm/report/balance-and-pnl.scm: new file to generate balance
	sheet and profit and loss reports.  Implements
	Reports/report-baln.phtml and Reports/report-pnl.phtml.  The code
	in here could be better, but it's not awful.  It's mostly a
	straight eperl port.

	* src/scm/report.scm: new file implementing the initial
	scheme-based report system.

	* src/scm/main.scm: use the new depend mechanism and load the new
	srfis

	* src/scm/extensions.scm: reformat so all the code doesn't go off
	the right side of a normal screen (with tabs set to 8, etc).
	Linas might veto this, but I thought it was worthwhile.

	* src/scm/depend.scm: new file adding a support/depend mechanism.
	Modify other files to start using it.

1999-11-30  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/window-help.c: extensive rewrite. Revamped look to use
	dockable toolbar. Handle motion keys. Escape key closes window.
	Graphics are now loaded.

1999-11-28  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/register/table-allgui.c (doMoveCursor): don't scroll when we
	update the cursor after the the callback.

	* src/register/table-gnome.c (doRefreshCursorGUI): same as below

	* src/register/table-motif.c (doRefreshCursorGUI): same as below

	* src/register/table-allgui.c (xaccRefreshCursorGUI): add a
 	do_scroll argument to determine whether the gui should scroll to
 	make the cursor visible. This lets us cut down on flashing.

	* src/register/gnome/gnucash-sheet.c (gnucash_sheet_table_load):
 	try to avoid scrolling
	(gnucash_sheet_cursor_set_from_table): remove redundant call to
 	update adjustments.

	* src/gnome/window-register.c (cancelCB): use
 	xaccSplitRegisterClearChangeFlag.
	(gnc_register_create_tool_bar): right-align the displayed balances

	* src/register/splitreg.c (xaccSplitRegisterClearChangeFlag): new
 	function. Clear the change flags of the register.

	* src/SplitLedger.c (xaccSRCancelCursorChanges): new
 	function. Cancel the changes made to the current cursor.

1999-11-27  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/window-register.c (regWindowLedger): set default sort
	order to the standard order.
	(gnc_build_ledger_sort_order_menu): add the standard order to the
	list of options.
	(gnc_ledger_sort_cb): handle the standard order

	* src/engine/Query.c (xaccQuerySetSortOrder): added BY_STANDARD and
 	BY_NONE sort orders.

	* src/register/splitreg.c (configLayout): configure the single
 	cursor last so the header is the most reasonable. This is a
 	hack. Eventually, we should probably switch headers dyamically.

	* src/register/gnome/gnucash-sheet.c
 	(gnucash_register_goto_virt_row_col): replaces and generalizes
 	gnucash_sheet_go_to_last_row.

	* src/gnome/window-register.c (gnc_register_jump_to_blank): new
 	function to jump to the blank split.
	(new_trans_cb): use gnc_register_jump_to_blank
	(regWindowLedger): jump to the blank split with above function
 	before returning

	* src/SplitLedger.c (xaccSRGetSplitRowCol): new function
	(xaccSRGetBlankSplit): new function

	* src/register/splitreg.c (configLabels): apply Rob Walker's patch
	to fix the labels.

	* src/gnome/window-register.c (gnc_register_date_cb): set start
 	date to the first second of the day selected and the end date to
 	the last second of the day selected.

	* src/engine/Query.c (xaccQueryGetSplits): fixed a problem to
 	prevent returning one split too many. We need to check for the
	max date before we add the split.

1999-11-23  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/register/gnome/gnucash-sheet.c (gnucash_sheet_go_to_last_row): 
	jump to the last row in the sheet. This will be the blank split.

	* src/gnome/window-register.c (gnc_register_create_menu_bar): add
	a menu item for moving to the blank split
	(regWindowLedger): jump to the last row, i.e., the blank split,
	before you return.

	* src/register/gnome/gnucash-style.c (gnucash_style_layout_init):
 	make the reconcile cell visible in mult-line mode. It's not
 	active, but it looks better.

	* src/SplitLedger.c (LedgerMoveCursor): tell xaccSRSaveRegEntry
 	which transaction we are moving to.
	(xaccSRSaveRegEntry): add an argument to indicate which
 	transaction will be current after the save. This allows us to
 	commit right away if we are changing transactions and keeps the
 	register gui in sync with the engine.

	* src/register/table-allgui.c (doMoveCursor): refresh the gui
 	cursor after the second makePassive if we are moving the gui.
  	This fixes a refresh bug that happens if the splits get reordered.

	* configure.in and src/gnome/Makefile.in: Rob Merkel's patch
	to check for gtkxmhtml
	
	* src/scm: applied Rob Walker's patch to add a version argument
	
	* src/gnome/account-tree.c (gnc_account_tree_init): auto resize
	the first column

	* src/gnome/window-main.c (mainWindow): give focus to the
	account tree before we exit

1999-11-22  Rob Browning  <rlb@cs.utexas.edu>

	* src/register/table-motif.c (modifyCB): *trivial* modification to
	support modify_verify cursor_position arg.  I'm not in a position
	to easily deal with the XmBae callback complexity.  This should
	just leave the status-quo.

	* src/motif/RegWindow.c (dateChangeCB): ditto.

	* src/register/table-allgui.[hc]: quickfill fixes, support the new
	modify_verify cursor_position arg.

	* src/register/gnome/gnucash-sheet.c: quickfill fixes, use the new
	modify_verify cursor_position arg.

	* ChangeLog: merge all the src/register/gnome/ChangeLog entries
	into this file and delete that file to finish up what Dave started
	on 1999-11-20.  Aside from being cleaner, it also makes emacs (and
	I suspect other editors) automatically find the right file when
	you do a "C-x 4 a" (changelog-add-entry).

	* src/register/*cell.h: added position (int *) parameter to
	all cell MV calls.  This allows the callback to reposition the
	cursor within the text if needed.  This was required by the
	quickfill fix, but is probably useful elsewhere.

	* src/register/quickfillcell.c (quick_modify): fixed so that
	cursor tracks as you type along with some other important bugs
	(quickfill divergences now cause the remainder of the stale fill
	to be deleted, etc.)

1999-11-21  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/window-register.c: (recordCB): when when record
	a new or existing transaction, make sure it will be in the
	date range we are viewing.

	* src/register/table-allgui.c: (gnc_table_traverse_update): handle
 	pointer traversals a bit more intelligently.

	* src/register/gnome/gnucash-item-edit.c: (item_edit_set_cursor_pos)
	fix for when you enter a cell that's right-aligned.
	
1999-11-20  Dave Peticolas  <peticola@cs.ucdavis.edu>

        * src/register/gnome/ChangeLog: we're going to stop using this
	changlog file and put all changes in the top-level ChangLog file.

	* src/gnome/reconcile-list.[ch]: Use a hash table to remember
	reconcile flags after a refresh. Also remember scroll position.
	Change row styles so active row isn't highlited.

	* src/register/gnome/gnucash-sheet.c:
 	(gnucash_button_press_event): For now, we need to enter the cell,
 	even if we're already there. The reconcile cell, for instance,
 	depends on this behavior. But, if we're entering the cell where we
 	already are, we remember the cursor position and try to go back to
 	it. Also, when we're entering a new cell it's drawn as if we're at
 	cursor position 0, so tell item_edit_set_cursor.

	* src/register/gnome/gnucash-item-edit.c (item_edit_draw_info):
 	new function to calculate drawing parameters for the item
 	editor. This is used both in drawing and in calculating the place
 	to move the cursor to for mouse traversals.
	(item_edit_draw): use item_edit_draw_info
	(item_edit_set_cursor_pos): use item_edit_draw_info

1999-11-19  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* gnucash-cursor.c (gnucash_item_cursor_draw): Use light gray for
 	the cell cursor; experimental to see if we like it.
	(gnucash_item_cursor_draw): Draw the inside rectangle slightly
 	inside.
	(gnucash_cursor_request_redraw): Tighten up the bounds now that we
 	don't have the outside rectangle.

	* gnucash-sheet.c (gnucash_button_press_event): Only move the cursor
	if the button press moves us to a new cell.  Set the editing cursor.

	* gnucash-item-edit.c (item_edit_draw): Take justification into
 	account here.  Use CELL_HPADDING, CELL_VPADDING instead of magic
 	constants to set the clip rectangle and the offsets.
	(item_edit_set_cursor_pos): New function.
	(item_edit_update): Adjust the positioning of the list now that we
 	don't have the outer rectangle.

1999-11-19  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/account-tree.c: remember expansion state and
	scroll position after a refresh.

	* src/gnome/query-user.[ch]: add parented versions of the
	query dialogs.

	* src/gnome/: modify dialogs to use parented dialogs

	* src/register/gnome/gnucash-cursor.c: (gnucash_item_cursor_draw):
	Heath's mod which removes the outer rectangle.

	* src/register/gnome/gnucash-item-edit.c: (item_edit_update):
	Heath's mod to make the combo list draw correctly

1999-11-18  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/engine/util.c: (PrtAmtComma): fixed
	rounding error when remainder is close to 1.

1999-11-17  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/register/gnome/gnucash-header.[ch]: removed type
	variable. The header should always be type GNUCASH_CURSOR_HEADER

	* src/register/gnome/gnucash-style.c:
	(gnucash_sheet_style_compile): use the cell labels for the header
	style labels
	
	* src/register/gnome/gnucash-item-edit.[ch]: Added a toggle button
	for popping the combo list.

	* src/register/gnome/gnucash-style.c: (gnucash_style_layout_init)
	make the width of the 'num' column of the split cursor the same as
	the others.

1999-11-15  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/register/gnome/gnucash-sheet.c: (gnucash_sheet_delete_cb)
	and
	(gnucash_sheet_insert_cb): use malloc/free instead of glib
	routines for newval. newval may be free()d by routines in the
	register code. You can't mix-n-match.

	* src/register/gnome/gnucash-sheet.c (gnucash_sheet_destroy) and
	(gnucash_sheet_new): sink the entry and unref it after the item
	editor is destroyed. This fixes a memory leak, the entry was not
	being finalized.

	* src/register/gnome/gnucash-sheet.c add
	(gnucash_sheet_key_press): allow outside entities to pass
	keystrokes to the sheet. Used by the combocell.

	* src/register/gnome/combocell-gnome-c: extensive modifications to
	support the new list item.

	* src/register/gnome/gnucash-item-edit.[ch]: ditto

1999-11-12  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/engine/util.c: (xaccSPrintAmount): print values
	very close to 0 as 0 without negative sign.

	* lib/README: updated to indicate obsolete packages.

	* lib/Makefile.in: don't build g-wrap if g-wrap-install
	directory exists

	* src/guile-util.c: (gnc_register_c_side_scheme_ptr):
	modified to return SCM handle, which is used with
	(gnc_unregister_c_side_scheme_ptr) to unregister.

	* src/gnome/option-util.c: added (gnc_options_init)
	and (gnc_options_shutdown).

	* src/gnome/top-level.c: call above functions at
	appropriate times.

	* src/gnome/account-tree.c: (gnc_account_tree_select_account):
	scroll to make sure account is visible.

	* src/register/gnome/gnucash-item-edit.c: (item_edit_draw): make
	the cursor larger and allow it to be seen even when it's at the
	end of a too-long-to-fit-in-cell string.

	* src/register/gnome/gnucash-item-list.[ch]: new code to support
	the combo cell.
	
1999-11-10  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/gnome/dialog-filebox.c: Use GtkFileSelection instead
	of GtkFileSelection2.

	* build: Changed configure.in/Makefile.in's to remove dependencies
	on gtkfilel2.

	* build: automatically rebuild gnc.[ch] when gnc.gwp changes *or*
	if you switch from motif to gnome build or vice versa.

	* src/gnome/window-main.: added Save As menu item.

	* src/register/gnome/combocell-gnome.c: reformatted to be
	idiomatic

	* src/register/gnome/gnucash-sheet.c:
	(gnucash_sheet_key_press_event): Added support for pageup/down and
	home/end keypressed.

1999-11-07  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/Refresh.c: Added this code for refreshing account-related
 	windows when accounts change. Right now, this is registers and
 	reconcile windows.

	* src/gnome/window-register.c: fixed deleting of blank split
	
	* src/register/gnome/gnucash-sheet.c
	(gnucash_sheet_activate_cursor_cell): handle enter updates when
	new_text is non-null by updating the cell from the table and *not*
	src/register/gnome/starting the editing widget.

	* gnucash-grid.c (draw_cell): used CELL_HPADDING for right justify
	adjustment on x value instead of CELL_VPADDING.

1999-11-05  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* src/register/gnome/gnucash-grid.c (gnucash_grid_draw): use
	g_return_if_fail for error checks.

	* src/register/gnome/gnucash-grid.c (gnucash_grid_unrealize):
	Sanity checks before unrefing the gc's.

	* src/register/gnome/gnucash-header.c (gnucash_header_unrealize):
	sanity checks

	* src/register/gnome/gnucash-currsor.c (gnucash_cursor_unrealize):
	sanity checks

	* src/register/gnome/gnucash-sheet.h (GnucashRegisterClass):
	parent class should be GtkTableClass

	* src/register/gnome/gnucash-sheet.c
	(gnucash_sheet_update_adjustments): update page_increment, so
	clicking on the rest of the scrollbar scrolls one page

	* src/register/gnome/gnucash-sheet.c
	(gnucash_sheet_key_press_event): call gnc_table_traverse_update on
	up/down motion.

1999-11-04  Dave Peticolas  <peticola@cs.ucdavis.edu>

	* Add this changelog entry which I should have done a long
	time ago.

	* Rework most of the src/gnome stuff to be compliant with
	gnome-standards.

	* Add QIF fixes.

	* Add Transfer and Adjust Balance windows.

	* Add gnome<->guile options interface.

	* Add c-side SCM registry, courtesy of Rob.

	* Add Alexandru's register window enhancements.

	* Add Heath's gnome register enhancements.

	* Remove dependencies on gtksheet. Hooray!

	* src/register/gnome Various: a few fixes here and there to make
	everything compile cleanly under -Wall. Mainly removing unused
	local variables, and changing g_return_if_fail to
	g_return_val_if_fail for functions which return a value. Added a
	few prototypes that were missing. Cleaned up #includes.

	* src/register/gnome/gnucash-sheet.c (gnucash_register_new): Make
	the vertical scrollbar flush with the top of the register.

	* src/register/gnome/Makefile.in: removed motif and qt
	targets. Made gnome target the default.

1999-08-30  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* src/register/gnome/gnucash-sheet.c
	(gnucash_sheet_key_press_event): Be sure to set new_p_row in the
	case GDK_Tab, since the function gnc_table_traverse_update checks
	the proposed new row/col, so we need to initialize properly.

1999-08-28  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* TODO: New file.

	* src/register/gnome/gnucash-style.c (gnucash_style_init): Removed
	the dependency on gnome-print for now.  We may want to use the
	gnome-print library in the future.

	* Makefile.in (LIBS): Ditto

1999-08-25  Rob Browning  <rlb@cs.utexas.edu>

	* Add ./README.gnome-hackers.

	* Add ./README.guile-hackers.

	* Add this file (./ChangeLog).  I'm planning to add change
	information here, and I invite others to do the same.  For those
	that use emacs, 'C-x 4 a' adds a new entry.  If people don't like
	this idea, we can drop it.

	* Add new scheme function gnc:choose-item-from-list-dialog.  There
	is C side code, but it's only meant to be called from scheme.
	This function is quite flexible in handles selections.  Eventually
	we might want to generalize this even more, but there are some GC
	issues to consider.  See src/gnome/query-user.c and gnc.gwp for
	details, and see src/scm/extensions.scm for an example usage.

	* IMPORTANT: queryBox signature has changed.  See the docs in
	src/gnome/query-user.c and in gnc.gwp for details.

	* Remove queryBox stubs from Motif side.  Motif doesn't support it
	(yet), and with gnc.gwp conditional inclusion we can just ignore
	it on the motif side.

	* Add function (current-gnc-compile-flavor) to gnc.gwp so that we
	can have conditional blocks.  Possible return values are 'gnome
	and 'motif.

1999-08-23  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* src/register/gnome/gnucash-header.c (gnucash_header_draw): Added
	a separator line between the header and the register entries.

	* src/register/gnome/gnucash-item-edit.c (item_edit_new): Attempt
	to implement the comboboxes.  For some reason, I can't get combos
	to work, something related to how the widget size is computed.
	Comment this out for now.

	* src/register/gnome/gnucash-item-edit.c (item_edit_set_arg):
	Ditto

1999-08-20  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* src/register/gnome/gnucash-grid.c (draw_cell): Set the
	background/foreground color on a per cell basis.  This obsoletes
	the bg/fg colors in the styles for now.

	* src/register/gnome/gnucash-sheet.c
	(gnucash_sheet_block_clear_entries): Fixed a big memory leak here.
	(gnucash_sheet_block_set_entries): Support for background and
	foreground colors for the cells.  Set these from the table.

1999-08-19  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* src/register/gnome/gnucash-style.c (gnucash_style_layout_init):
	Layout the stock registers.

1999-08-18  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* src/register/gnome/gnucash-grid.c (gnucash_grid_draw): When the
	block is active, if a cell doesn't have a user-entered string,
	then draw the label for that cell type as a hint for what should
	be entered.  TODO: Don't draw the label if the cell isn't an
	input/output cell, or whatever.

	* src/register/gnome/gnucash-style.c
	(gnucash_sheet_style_compile): Initialize the labels[][] array in
	the style.

1999-08-17  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* src/register/gnome/gnucash-cursor.c (configure_bounds): Do this
	the right way.

	* src/register/gnome/gnucash-item-edit.c (item_edit_draw): Added
	the clip rectangle, and made it so the text scrolls to keep the
	cursor in view.

	* src/register/gnome/gnucash-grid.c (gnucash_grid_draw): Added the
	clip rectangle.

1999-08-14  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* src/register/gnome/gnucash-cursor.c
	(gnucash_cursor_get_pixel_coords): Take into account the alignment
	offsets.

	* src/register/gnome/gnucash-item-edit.c
	(item_edit_get_pixel_coords): Take into account the alignment
	offsets.

	* src/register/gnome/gnucash-grid.c
	(gnucash_grid_find_block_origin_by_pixel): Fixed an off-by-one
	mistake.

	* src/register/gnome/gnucash-sheet.c
	(gnucash_sheet_make_cell_visible): New function
	(gnucash_sheet_cursor_move): Make the cell visible.
	(gnucash_sheet_set_top_row): Added support for aligning on the top
	or bottom row.
	(gnucash_sheet_update_adjustments): Fixed this so the sheet can't
	scroll past the bottom row.

1999-08-12  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* src/register/gnome/gnucash-sheet.c
	(gnucash_sheet_activate_cursor_cell): With Alexandru's patches, we
	seem to need to grab the focus.  We'll probably need this
	elsewhere.

1999-08-11  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* src/register/gnome/gnucash-sheet.c (gnucash_button_press_event):
	New function.

	* src/register/gnome/gnucash-grid.c
	(gnucash_grid_find_block_origin_by_pixel): Add a return value.
	(gnucash_grid_find_cell_origin_by_pixel): New function.

1999-08-10  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* src/register/gnome/gnucash-sheet.c
	(gnucash_sheet_key_press_event): Added up/down movement.
	(gnucash_sheet_style_set_dimensions): Change the way we set
	dimensions.
	(gnucash_sheet_size_allocate): Recompute style dimensions.

	* src/register/gnome/gnucash-item-edit.c
	(item_edit_get_pixel_coords): We need to compute pixels relative
	to the canvas origin, not the window origin.  Duh.  (Note that
	canvas sends coordinates to a draw function relative to the canvas
	origin.)

	* src/register/gnome/gnucash-cursor.c
	(gnucash_cursor_get_pixel_coords): Ditto.

	* src/register/gnome/gnucash-sheet.c
	(gnucash_sheet_deactivate_cursor_cell): New function.
	(gnucash_sheet_activate_cursor_cell):
	(gnucash_sheet_cursor_move):
	(gnucash_sheet_start_editing_at_cursor):
	(gnucash_sheet_stop_editing):

1999-08-09  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* src/register/gnome/combocell-gnome.c: New file, everything is a
	no-op for now, we just need the stubs.

	* src/register/gnome/gnucash-item-edit.[ch]: New file.  Implements
	an entry for the sheet.

1999-08-08  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* src/register/gnome/gnucash-cursor.[ch] : New file.  Implements a
	block/cell cursor.

	* src/register/gnome/gnucash-sheet.c
	(gnucash_sheet_style_get_cell_pixel_rel_coords): New function.

1999-08-06  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* src/register/gnome/gnucash-grid.c (gnucash_grid_draw): Updated
	to reflect the changes below.
	(gnucash_grid_find_block_origin_by_pixel): Bug fix (off by one).

	* src/register/gnome/gnucash-sheet.c (gnucash_sheet_table_load):
	Another overhaul of the structure.  We need to keep a local copy
	of the table, to keep what we need to redraw from changing
	underneath us.  So we needed some memory management and some minor
	API adjustments.
	(gnucash_sheet_resize):
	(gnucash_sheet_resize_row):
	(gnucash_sheet_destroy_row):
	(gnucash_sheet_block_new_row):
	(gnucash_sheet_block_set_from_table):
	(gnucash_sheet_block_set_entries):
	(gnucash_sheet_block_clear_entries):
	(gnucash_sheet_insert_block_row):
	(gnucash_sheet_get_block):

1999-08-04  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* src/register/gnome/gnucash-sheet.c
	(gnucash_sheet_compute_visible_range): New

	* src/register/gnome/gnucash-grid.c (gnucash_grid_draw): Basic
	support for drawing the text of a cell.
	(gnucash_grid_draw): Added support for justifications.

1999-08-03  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* src/register/gnome/gnucash-sheet.c (gnucash_register_new): Make
	register into an independent widget.

	* src/register/gnome/gnucash-sheet.c, gnucash-grid.c: Overhaul of
	the structure.  We don't need to keep a list of blocks, or a hash
	list of styles.  All the info we need is in the Table, and there
	are only five styles associated to a given table (from
	splitreg.h).  Many functions touched to reflect the change.  Also,
	keep track of the SplitRegister associated to this table.

1999-08-02  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* src/register/gnome/gnucash-color.c (gnucash_color_init): move
	the color allocation and hash table routines from table-gnome.c to
	here.

	* src/register/gnome/gnucash-sheet.c (gnucash_sheet_block_append):
	fixed a silly bug.
	(gnucash_sheet_block_style_new): Fix up the key.
	(gnucash_register_new): This is complex widget that already has
	the vertical/horizontal scrollbars attached.

	* src/register/gnome/gnucash-grid.c (gnucash_grid_find_block): Be
	sure we get a valid sheet_block.  Our register window may be
	larger than the number of blocks.

	* src/register/gnome/gnucash-sheet.c (gnucash_sheet_load): Initial
	load of the table into the register.

	* src/register/gnome/gnucash-color.[c,h]:  steal these files from gnumeric

1999-08-01  Heath Martin  <martinh@pegasus.cc.ucf.edu>

	* src/register/gnome/gnucash-sheet.c
	(gnucash_sheet_style_recompile): make height, width a member of
	the style, so we don't have to change every block when the style
	gets recompiled (on sheet allocation changes for example).

	* src/register/gnome/gnucash-grid.c (gnucash_grid_get_type): First
	hack at getting a grid going.
	(gnucash_grid_class_init): Ditto
	(gnucash_grid_set_arg):
	(gnucash_grid_init):
	(gnucash_grid_draw):
	(gnucash_grid_find_block):
	(gnucash_grid_update):
	(gnucash_grid_unrealize):
	(gnucash_grid_realize):

	* src/register/gnome/gnucash-sheet.c (gnucash_sheet_new): New
	(gnucash_sheet_get_type): New
	(gnucash_sheet_class_init): New
	(gnucash_sheet_create): New
	(gnucash_sheet_realize): New
	(gnucash_sheet_block_new): New
	(gnucash_sheet_block_destroy): New
	(gnucash_sheet_vadjustment_value_changed): New
	(gnucash_sheet_set_top_block): New
	(gnucash_sheet_block_get_pixels): New
	(gnucash_sheet_get_block): New
	(gnucash_sheet_style_init): etc, per block style handling