summaryrefslogtreecommitdiffstats
path: root/ChangeLog
blob: ca9f82837f8acd34806a22031dff80c85ef8dc15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1.6.2
-----
1. Disable the support for 'fix parent-less dialog' option - this causes too many
   issues with applications to be worth the fuss. If you really want this enabled,
   use the -DQTC_ENABLE_PARENTLESS_DIALOG_FIX_SUPPORT=true cmake option.

1.6.1
-----
1. Use same radius for all corners of progressbar.

1.6.0
-----
1. Add 'glow' focus option - this is now the default.
2. Fix potential crash in rgbToHsv
3. Enable glow/shadow/etch for square and slight round settings.
4. Draw coloured mouse over for 'checked' toggle buttons.
5. Use Highlight colour for default button glow.
6. Default sub-menu popup delay to 225 - matches Gtk2 standard default.
7. Fix glow-mouse over for radio buttons.

1.5.0
-----
1. Add option to set progressbar colour.
2. Add options to have squared sliders and/or scrollbar sliders even when
   general setting set to round.

1.4.1
-----
1. Fix config dialog compilation.

1.4.0
-----
1. Add striped window and menu background options.
2. Added options to not square frames and tab frames.
3. Add option to drag windows by menubar.
4. Blend menubar and window titlebar gradients if:
         menubar, titlebar, and inactive titlebar gradients match AND
         not blending titlebar gradient AND
         using window titlebar colour for menubar AND
         extending window drag into menubar
5. Default titlebar colours to window colours - matches KDE4 default.
6. Fix drawing of scrollbar background.

1.3.1
-----
1. Fix compilation of config module. Please note that this module is deprecated,
   and might be out-of sync with the maintained KDE4 version.
2. Fix compile when style support is enabled.

1.3.0
-----
1. Add option to use twin titlebar colours as menubar shade.
2. Fix(?) compilation of config module.
3. Dont use TDEStandardDirs to create config folder.
4. Use 'kde' to disable parent-less dialog fix for all KDE applications.

1.2.0
-----
1. Draw etch effect on radios if using a button effect, and not using button-like
   check/radios.
2. If drawing square non-gtk style scrollviews, use a dark/light borders.
3. If drawing square scrollviews, set frame width to 1 if using thin scrollbar
   groove.
4. Add options to draw square progress and entry fields when rounding.
5. Add option to control whether progressbars have a border on all sides, or just
   top/bottom.
6. Add option to colour default buttons using highlight colour.
7. Expand selected check/radio colour option so as to be able to specify colour.
8. Allow to draw focus highlight for square scrollviews.

1.1.1
-----
1. #include config.h before using QTC_QT_ONLY

1.1.0
-----
1. Add option to not embolden progressbar text.
2. Add option to allow coloured mouse over for toolbar buttons.
3. Config module is deprecated, and no longer updated - use KDE4 config module
   to change settings. If KDE3 version is required, pass -DQTC_BUILD_CONFIG_MODULE=true
   to cmake.

1.0.1
-----
1. Apply cygwin patches from Yaakov S - use MODULE istead of SHARED.

1.0.0
-----
 1. Added option to colour selected check/radios.
 2. Added option to use a smaller dot for radios.
 3. Made check/radio and splitter highlight options a configurable % - i.e.
    not based on standard hightlight %
 4. When highlighting check/radio/splitter background, use the selection gradient.
 5. Added new splitter/handle/thumb style: single dot.
 6. Default check/radio/splitter/expander highlight set to 3%
 7. Don't do coloured mouse over for buttons of editable combos, spin buttons,
    or scrollbar buttons.
 8. Don't do regular coloured mouse over of sliders when these are set to be
    coloured on mouse over.
 9. Allow to specify strength when colouring selected tab.
10. Remove support for QtCurve styles (these appear as unique KDE styles in the
    main KDE style selection dialog). Re-enable support by passing
    -DQTC_STYLE_SUPPORT=true to cmake.
11. Slightly lighter shade used for coloured mouse over of arrows.
12. Add option to specify appearance of dock-widget titlebars.
13. When saving settings to $XDG_CONFIG_HOME/qtcurve/stylerc, remove the older
    $XDG_CONFIG_HOME/qtcurvestylerc, and $XDG_CONFIG_HOME/qtcurve.gtk-icons if they
    exist.
14. Use split gradient for dock-widget titlebars.
15. Reduce number of supplied presets.
16. Allow to compile style against just Qt3 - tarball includes a simplified copy
    of TDEStyle. Need to pass -DQTC_QT_ONLY=true to cmake. NOTE: May also need to set TQTDIR
    *before* calling cmake.
17. If KDE3 development files not found, then automatically set -DQTC_QT_ONLY=true
    
0.69.1
------
1. Remove line beneath dock widget titles.

0.69.0
------
1. Add option to control whether bottom tabs should have their gradient
   shades inverted.
2. Config files now stored under $XDG_CONFIG_HOME/qtcurve (e.g. ~/.config/qtcurve)
3. Fix some issue with 'flat' appearance.
4. Fix shaded listview headers sometime being uninitialised.

0.68.1
------
1. Fix reading, and saving, of 'dark inverted gradient' setting.

0.68.0
------
1. New options:
    Control whether icons are displayed in menus
    Force alternate colours in listviews

0.67.3
------
1. Fix saving of menubar item 'colour on mouse over' setting.
2. Offset sunken slider thumbs to improve appearance.

0.67.2
------
1. Only do mouse over for entries if combos and spin widgets are unified.
2. If not etching/shadowing, when mouse over set to 'glow' use 'thick coloured'
3. If not etching/shadowing, decrease thinner scrollbar groove.
4. Fix shaded button on combos when not etching/shadowing.
5. Remove hard-coding of light border in progressbars - use gradient setting.

0.67.1
------
1. Disable combobox mouse over for OpenOffice.

0.67.0
------
1. Add option to draw insider border of inactive tabs.
2. Add option to colour the sorted listview header.
3. Disable spin button when at min/max - matches Gtk2.
4. Disable scrollbar buttons when at min/max - to match spin buttons.
5. Place non-V arrows of unified spin widgets closer together.
6. Fix shadows on radio buttons.

0.66.0
------
 1. Add a new 'Dark Inverted Gradient' and use this as the default gradient
    for menu stripes.
 2. New 'Agua' style gradient - looks better under KDE4 and Gtk2.
 3. Add option to lighten/darken the background of tabs.
 4. Make inactive tabs more consistent with active tabs.
 5. Remove sunken scroll views config item, and replace with option to control
    if entries and scroll views should be etched (sunken).
 6. Modify defaults:
        Scrollbars outside of scrollview (Gtk/oxygen style)
        Thin scrollbar groove.
 7. Use TDE_SESSION_VERSION to determine which KDE prefix (KDE3, or KDE4) to
    seach first for qtc_xxx.themerc files.
 8. Update Klearlooks to be more consistent with Clearlooks (lighten tab background,
    use highlight strip on active tab, dont colour active tab)
 9. Use default KDE4 settings to determine colour of text for disabled items.
10. When calling tde-config/kde4-config pipe stderr to /dev/null

0.65.4
------
1. Use 'MS Windows' and not 'Windows' for scrollbar type - to aid
   translations.
2. Fix installation location of translation files.

0.65.3
------
1. When not using button-like check/radio boxes, use view text as the
   indicator colour.
2. Fix slight tab glitches when using glow tab mouse over and square
   tabs.
3. Fix usage of custom menu text colours.
4. Fix custom menu stripe colour.
5. In config dialog - for gradient directions, use "Top to bottom" instead of
   "Horizontal" and "Left to right" instead of "Vertical"
6. Add support for translations of config dialogs.
    Turkish translation by Necmettin Begiter

0.65.2
------
1. Add option to draw list view lines in pre 0.65 style.

0.65.1
------
1. Use a border width of 1 if gradienting popupmenus.
2. When using darkened menu stripe use popupmenu background colour as the
   base colour.
3. Fix gradient menus when not using lighter popup menu backgrounds.
4. Dont fill background of PE_PanelLineEdit
5. When readining kicker's settings, and window colours, use the correct KDE home.
6. Fix blank menus in Amarok when using gradient menu background.

0.65.0
------
 1. Add options to draw editable combos, and spin widgets, as edit fields with
    embedded arrows - oxygen style.
 2. Add option to draw a light border around tab widgets, as opposed to 3d look.
 3. Added ability to specify scrollbar width (11 -> 31, default 15)
 4. Base slider dimensions off of scrollbar width, unless using triangular slider.
 5. Add option to have thinner buttons.
 6. Add option to specify gradient for background of popupmenus.
 7. Enable mouse-over for entry fields.
 8. For mouse-over and focus, use same colour for top and bottom inner parts
    of entry fields.
 9. When using full focus with coloured mouse over, then mouse over takes
    precedence.
10. Alter default settings:
        Place arrows of spin buttons, and editable combos, in the edit field.
        Draw a light border around tab widget.
        Thinner buttons.
        Use soft gradient for active tab.
        Use glow style highlight for tab mouse-over (this introduces gaps between tabs).
11. Modified how button, and combo, heights are calculated - no longer set a
    minimum height.
12. Fix some re-draw errors with thin scrollbar grooves.
13. Default to reading KDE4 settings if TDE_SESSION_VERSION is not set.
    Pass -DQTC_DEFAULT_TO_KDE3=true to cmake to force this to default to KDE3.
14. Call tde-config / kde4-config to ascertain users TDEHOME.
15. Fix slight redraw error with glow style mouse over tabs.
16. Remove box from listview arrows when configured to drawn listview lines.

0.64.2
------
1. When using shaded combo buttons, use button colours for border.

0.64.1
------
1. When using shaded combo buttons, use the combo splitter setting to
   determine if there should be a border between the shaded and unshaded parts.
2. Fix background of some QTextEdits.

0.64.0
------
 1. Add option to not draw border around popupmenus.
 2. Add option to unify spinbuttons.
 3. Add option to set sub-menu delay (default 100ms)
 4. Use equal top/bottom padding on popupmenu separators.
 5. Add option to colour arrow part of combobox.
 6. Draw resize grip as a darkend triangle.
 7. Add a 'thick coloured border' mouse over type.
 8. Allow to darken sliders.
 9. Add new default button indicator - darken.
10. Fix mispainted spin widget entry field.
11. Fix reading of KDE4 palette.
12. Fix setting of check/radio shade.
13. Fix storing of custom menu stripe colour.
14. In config dialog, place '%'symbol on the right for the "popup menu background"
    setting.
15. Fix kaffeine's slider benig completely filled at start of song.
16. Fix LineEdit in qtconfig.
17. Under KDE4 (TDE_SESSION_VERSION>=4), default hover/focus colours to the
    KDE4 defaults.

0.63.0
------
 1. Add '3dfull' to gradient border options. This forces the
    dark, as well as the light, portion to be drawn.
 2. Use a lighter shade for the dark portion of gradient border.
 3. Flat dot for radio buttons.
 4. Option to use button colour for listview headers.
 5. Use KDE4 colours for focus and mouse-over.
 6. Removal of background focus option.
 7. Softer colouration of selected tab.
 8. Tab mouse over options; top (as before), below, or glow.
 9. Modified defaults:
     Tab mouse-over highlight drawn at the bottom
     Plain slider style
     Align titlebars text in center
10. Add appearance setting for background of flat scrollbar buttons.
11. Add HCY colour space.
12. Use tint and mix colour routines from KDE4's KColourUtils.
13. Remove QtCurve's 'inactiveHighlight' option, and use KDE4s setting
    instead.
14. Add option to specify appearance setting of filler part of sliders.
15. Increase number of custom gradients - now matches number of gradient
    config items.
16. When using glow style mouse over, use mouse over colour for arrows.
17. Option to use a thinner groove for scrollbars (only when using flat, or no, buttons).
18. Option to only colour sliders on mouse over.
19. Option to round all tabs.
20. Add option to specify menu stripe colour.
21. Update gradient preview when change colour space.
22. Remove 'Custom sunken gradient' setting, as this was not
    actually used.
23. Better handling of 'full centered' titlebar texts when
    window size is small.
24. Fix scrolbar sliders appearing rounded when round=none, sliders
    are shaded, and flat scrollbar buttons.
25. Fix faded menuitems when not rounding.
26. Make popup menu titles more KDE4-like.
27. Fix use of base colour in disabled listviews. (Fixes bug introduced in 0.62.0)

0.62.7
------
1. Show 'extra' as the default round setting in the config UI, as this is
   actually the default. Note, that KDE3 does not support this and will use
   'full' instead.

0.62.6
------
1. Allow ability to specify if titlebar center alignment is for the full window
   width, or just the text area.
   
0.62.5
------
1. Use gradient for filled slider - unless appearance is flat/raised.
2. Remove menubar item size adjust code when toolbar borders are set - not
   needed for KDE3, as it has padding anyway.
3. Don't highlight slider groove on mouse-over.
4. Fix coloured bottom tabs.
5. Fix faded menuitems when not lightening popupmenus.

0.62.4
------
1. When drawing filled slider groove, use fill colour for border as well.
2. Better positioning of V arrows on secondary scrollbar buttons.

0.62.3
------
1. Fix misdrawing of filled slider groove when slider is at 0.
2. Use correct appearance setting for slider groove.
3. Fix potentional palette issues if Qt3 and KDE3 have difference palettes.
4. Override QStyle::drawItem to remove etched disabled text, as opposed to
   just setting GUIStyle styleHint. This fixes the 'click on menubaritem' to
   close menu issue.
5. When menubars have a border, adjust the menubar items accordingly.
6. When filling the used part of a slider groove, use the slider colour 
   if set, otherwise use the highlight colour.

0.62.2
------
1. Fix crash when coloured mouse over is set to none, and focus is set to full.
2. Make focus full like KDE4/Gtk2
3. Fix some issues gradient issues (tabs and menuitems).

0.62.1
------
1. Use highlight colour for unselected focused view items.
2. Fix saving/reading of custom shades.
3. Fix striped progress.
4. Fix background of disabled spin widgets.

0.62.0
------
 1. Reduce gradient code complexity - makes predefined gradients
    work in the same vein as custom gradients.
 2. Add scrollbar/slider groove and 'sunken' appearance options.
 3. Added new soft and harsh gradients.
 4. Change defaults:
        Soft gradient
        Fade menuitems
        Don't use highlight for menu.
        Default highlight set to 3%
        Toolbar separators set to sunken
        Flat menubar appearance
        Button like check/radios
        Supply, and use, predefined custom shades
        Plain progress
        Don't highlight active tab
        Sunken scrollviews
        Sunken appearance set to soft
        Line focus
        Set custom appearances for titlebars
 5. Allow all bar flat and raised tabs to bol coloured.
 6. Only save appearance settings if different from default.
 7. If a gradient does not define the values for positions 0 and 100, then add these.
 8. Better colouring of selected tab.
 9. Added new focus options - full and line.
10. Add new round options - extra and max.
11. Don't etch disabled items.
12. Use text colour for focus indicator in tree/list/etc views.
13. When specifying custom gradients, add the pssibility to have no
    internal border - options are now none, light, 3d
14. Only apply plastik style mouse-over scrollbars and sliders when
    plastik is set as the mouse-over style.
15. Add option to specify titlebar text alignment.
16. When setting palette, also set link and link visited colours.

0.61.4
------
1. Fix gradient of faded menuitems when not using lighter background.
2. Disable usage of group box lines - has too many issues.

0.61.3
------
1. Fix settings for sliderThumbs, handles, toolbarSeparators, and splitters.
2. Disable 'group box line' for ksysguard.

0.61.2
------
1. Fix setting of options if no qtcurvestylerc is found!
2. Fix border of tabs.

0.61.1
------
1. Fix setting of default style. Fixes odd behaviour of config dialog!
2. Fix position of dark part of sunken lines.
3. Improve KDE dock widget titles.
4. Read in custom gradients and shades from any system config file.

0.61
----
1. Only draw coloured border for moused-over items if they are enabled!
2. Add option to draw line after frameless groupbox title.
3. Dont darken background of dock widget titlebars, just draw a line underneath.
4. Add 'none' to toolbar handles and splitters style.
5. Change defaults:
        Button effect: Shadow
        Mouse over: Glow
        Default button indicator: Glow
        V arrows
        Flat toolbars
        Use highlight colour for focus
        Flat scrollbar buttons
        No combo line
        Sunken toolbar handles
        Only lighten popupmenus by 2%
        Flat active tab
        Don't shade sliders
        Don't darken menubars
        Use darkened background for progressbars
6. Allow to darken popup menu background.

0.60
----
 1. Add more safety checks for destruction of hover widgets.
 2. New focus rect options - standard, highlight, background.
 3. Add the ability to specify popup menu light factor.
 4. Add option to use darkened background colour for menuitem selection.
 5. Add 'fade' to menuitem appearance.
 6. Option to have flat scrollbar buttons.
 7. New slider styles - plain rotated, and round rotated.
 8. Increase size of busy progressbar.
 9. Draw border around filled progress.
10. Option to have button-like checks/radios.
11. Use base for light part of lineedit border, and background for scrollview.
12. Nicer 'V' arrows.
13. Add option to specify appearance of inactive titlebars.
14. Round internal corners of plain coloured mouse over effect.
15. Remove reading of Qt3 palette - this 'hack' only worked for pure Qt apps.

0.59.5
------
1. In config dialog, rename the 'Fill' progressbar option to 'No border',
   and place it on the 'Bar' line.

0.59.4
------
1. Left align dock widget titles - more KDE4 like. (Right align for RTL)
2. Dont activate menubar when Alt key is pressed alone - matches Gtk.

0.59.3
------
1. Fix background drawng of sliders on toolbars (such as in Kaffeine), when
   coloured mouse over is disabled and highlight factor is set to 1.0.

0.59.2
------
1. Also check in share/kde4/apps/kstyle/themes for qtc_*.themerc files.

0.59.1
------
1. Fix appearance of shiny glass defult buttons.
2. Give glass default buttons a light border.

0.59
----
 1. When drawing gray focus rect, draw only slightly rounded.
 2. Etch/shadow effect now applied to widget sides as well as
    top/bottom.
 3. Add etching to checks, radios, slider grooves, and progressbars.
 4. Option to have progress fill groove - default to true.
 5. Option to display non-editable combo splitter - defaults to true.
 6. Dont do coloured mouse over for mdi buttons, dock widget buttons,
    or toolbar buttons.
 7. Better coloured mouse over for checks and radios.
 8. Don't use background colour for non-coloured mouse over of
    check/radios if highlighting text backgroud.
 9. When colouring menubars, correctly draw menubar text colour
    of inactive windows.
10. Fix potential crash when using pixmap cache.
11. Fix tab coloured mouse-over when not rounded.
12. Implement size grip.
13. New mouse over effect - glow. Only applicable if etching or shadowing.
14. New default button indicator - glow. Only applicable if etching
    or shadowing.
15. Allow up to 10 custom defined gradients.
16. Allow custom shades to be specified.
17. Add option to specify active tab appearance.
18. Don't do coloured mouse-overs for sunken buttons.
19. Apply 'border menuitems' only to popup menus.
20. If lightening popup menus, and not bordering menuitems, then remove 1
    pix border arund popup menus.
21. Change default to not border menuitems.
22. Re-arrange config GUI.
23. Remove some frames from kate.
24. Scrolview options: allow sunken, highlight, and square.
25. Option to specify progressbar groove appearance.

0.58
----
1. Add a config option for menu stripe appearance - defaults to gradient.
2. Add a config option for selection appearance - defaults to flat. KDE4 (Qt4.4) & Gtk2 only.
3. Use background colour for disabled scrollbar buttons.
4. Remove some frames from systemsettings.
5. Don't draw menu separators through stripe.
6. Draw menu stripe on the right for RTL languages.
7. Supply a QtCurve colours file.
8. Lighter menustripe when not lightening menus.
9. Lighter menu separators.

0.57.1
------
1. Fix for frameless groupboxes krusader's config dialog.
2. Draw QDockWindowResize handles like QSplitters.
3. Make dock windows more KDE4 like.
4. Don't draw frames around kicker buttons.
5. Fix kicker menu stripe.

0.57
----
1. Modify defaults:
     Turn off shade menubar only of active window
     Set default button indicator to tint
2. Re-added option to highlight background of check/radio text on mouseover.

0.56.3
------
1. Don't set sliders to flat just because appearance is flat.

0.56.2
------
1. Use case-insesitive string compares when checking Qt and KDE config files.
2. Fix for (sometimes) ever-boldening frameless groupbox titles.
3. Don't colour non-maxed sliders of disabled scrollviews.

0.56.1
------
1. Fix crash when using corner default button indicator and no coloured
   mouse over.

0.56
----
1. Change default settings:
        Dont animate progressbars
        Frameless groupboxes
        Gradient KDE4 window titlebars
2. Correctly position corner indicator.
3. Use mouse over colours for corner indicator.
4. Add option to control window titlebar appearance - default to
   gradient.
5. Read in KWin's pallete, and use to colour MDI windows.
6. Draw own icons for titlebar buttons - more KDE4 like.
7. Option to tint the default button colour.
8. Option to draw a stripe on the left hand side of popupmenus.
9. Only mark default button if it is enabled.

0.55.3
------
1. Style "Ideal::Button"s on "Ideal::ButtonBar"s as per KMultiTabBar tabs.
   (Makes KTorrent's tab buttons look like Kate's sidebar buttons)
2. Read KDE4's contrast setting if running under KDE4.

0.55.2
------
1. Add ability to import qtc_*.themerc settings into config dialog.
2. Lighten dockwidget titlebars.

0.55.1
------
1. Only allow coloured selected tabs if tab appearance is set to gradient.
2. Allow triangular sliders when not rounding.
3. Fix appearance of flat/raised disabled scrollbar buttons - more
   consistent with Gtk2 and KDE4
4. Fix potential infinte loop when elliditiding title string.
5. Also eliditude vertical titlebars.

0.55
----
 1. Ability to create custom themes. See Theme details in 'README' file.
 2. Supply a 'Klearlooks' QtCurve theme.
 3. Allow 'flat' lines in scrollbar handles, toolbar handles, toolbar
    separators, and splitters.
 4. Option for 'X' style checkmarks.
 5. Option to have colour the selcted tab.
 6. Optional diagonal progressbar sripes.
 7. Use alternating dark/light for dashed toolbar handles.
 8. New 'split' style gradient.
 9. Option to specify slider style: plain, round (only when appearance=round),
    and triangular (plastik-ish)
10. Modify default style: flat splitter lines, flat slider thumbs, no
    toolbar separators, triangular slider, diagonal progressbar stripes.

0.54.1
------
1. Supply a simple 'mkpkg' script to create packages with checkinstall.

0.54
----
1. Converted buildsystem to CMake.
2. New option 'inactiveHighlight', if set then use a mix of highlight and background
   colour as highlight for inactive windows/elements.
3. Set KDE3 colours from Qt4 settings if running under KDE4.
4. Read in Qt3's inactive palette settings for highlight and highlightedText.
5. If an inactive palette is set (e.g. via qtconfig), ensure that progress
   bar text is unaffected.
6. Remove frames from source/destination labels of kio progress dialogs.
7. Add gui to set shading option.
8. Nicer look for selected tab highlight.

0.53
----
1. Removed 'Shadow buttons' option, and replaced with none/shadow/etch setting
   - default to 'none'.
2. Added 'passwordChar' option to set character used for password entries.
3. Option to have frameless groupboxes - Gtk like.
4. Add an 'Advanced' tab to config dialog.
5. Add config item gtkButtonOrder set to 'true' to use Gtk/GNOME button order.
6. Modified contrast settings to be more varied.
7. Gradient background of checks and radios, if appearance is not flat/raised.

0.52.3
------
1. Don't lighten border of disabled check/radio buttons.
2. Lighten trough of disabled slider.
3. Modify tdehtml check to also check to see if widget name == "__tdehtml"
4. Store tdehtml widgets in a map, to speed up checking.
5. Fix shadow on comboboxes.
6. Draw background of checked menuitem icons as per KDE4.

0.52.2
------
1. Fix crash when slider colour == button.

0.52.1
------
1. Draw emphasis around menus when not lightening.
2. Use button colours to border entry fields.
3. Dont allow scrollbars to be recoloured.
4. Fix amarok menus!

0.52
----
 1. Use 'dull glass' as the default gradient - previous default is now
    called 'Clean'.
 2. Darken slider mouse over colour if slider is not shaded.
 3. Use thinner slider mouse over sections if slider is not shaded.
 4. Improve look of small V arrows.
 5. Even duller dull glass, but much more useable.
 6. Fix setting of check/radio colour.
 7. Only highlight editable combo arrow when mouse over arrow, not over
    edit field - more Gtk like.
 8. Added one config file option (no gui):
         gtkScrollViews set to 'true' to have the scrollbars drawn outside
                        of scrollviews. (However, doesn't look very good)
 9. Lighten combo list frame.
10. Dont round MDI buttons.
11. Fix opera's MDI buttons within menubars.
12. Always assume PE_ButtonBevel is enabled - used for QtConfig's colour buttons.

0.51
----
 1. Changed shading to use HSL colour space. This can be altered by
    editing $XDG_CONFIG_HOME/qtcurvestylerc and setting 'shading=simple'
    for the previous method, or 'shading=hsv' to use HSV.
 2. Add options:
        Border all of menu/toolbars.
        Darker borders.
        'V' arrows.
 3. Fix raised listview headers.
 4. Fix glass style menuitem appearance.
 5. Modifed look of dullglass, looks "softer"
 6. Improve look of plastik mouse-over for non coloured scrollbars.
 7. For disabled buttons, use standard fill but lighten border.
 8. Use darker colours for mouse-over and default button - helps with
    light colour schemes.
 9. Dont draw sunken panel around checked menuitems.
10. Fix karm (and others?) statusbar icon.
11. Fix for radio buttons in apps where QApplication::NormalColour!=QApplication::colourSpec()
    (e.g. designer)

0.50
----
1. Add settings for:
    Fill used slider
    Round menubar item top only
    Menuitem appearance
    Border menuitems
    Progressbar appearance
    Gradient progressbar groove
    Use standard buttons for sidebar buttons
    Check/radio colour
    Plastik style mouse-over
2. Dont colour menubar items on mouse over if not colouring menubars.
3. When drawing menubar borders, only draw bottom line.
4. When drawing toolbar borders, only draw top/bottom or left/right
   - depending upon orientation.
5. Draw checks/radios within listviews the same as standard.
6. Use 'foreground' colour for menu text.
7. Draw dock window titles, and darken background, to be more consistent
   with Qt/KDE4.

0.49
----
1. Add settings for:
      Tab appearance
      Listview appearance
      Slider appearance
2. If TDE_SESSION_VERSION is set to >=4, then read settings from
   $XDG_CONFIG_HOME/TrollTech.conf. This only affects Qt-only
   applications - KDE apps should not be affected.
3. Lighten focus rectangle.

0.48.5
------
1. Fix slight slider drawing errors.
2. Fix crash on mouse-over.

0.48.4
------
1. Fix slight drawing errors in corner of lineedits on toolbars.
2. Fix scrollbar borders on certain apps - notably konsole. This was
   caused by an attempt to fix TDEHTML's scrollbars - that fix will
   now only be applied to konqueror and kontact (akregator uses tdehtml)

0.48.3
------
1. Fix look of +/- spin buttons when etching.

0.48.2
------
1. Modifed the glass variants. Dull is a bit 'duller' in the top 1/2, and
   fades away at the bottom. Shiny is now more like dull, but with more
   pronounced gradients.
2. Fix borders of selected menubar item when colouring menubar.
3. Only darken menubar colour when using selcted backgound colour, if
   using glass gradients.
4. Only write settings to config file if differ from default.
5. Improve look of OpenOffice.org tabbars - not perfect, but better.
6. Fix some RTL issues.
7. Fix menubar drawing in kontact if shading only active windows.

0.48.1
------
1. Draw light border around all of progressbar.
2. Fix squared checkboxes in tdehtml.
3. Fix drawing of menubar border for inactive windows.
4. Fix OpenOffice.org scrollbars.

0.48
----
1. Fix coloured mouse over for glass styles.
2. Re-introduce the following options:
        Roundedness
        List view lines
        Striped progress bars
        Drawing of statusbar frames
3. Draw light border around progressbar elements
   when not in flat/raised/inverted mode.
4. Oval shaped sliders when fully round, otherwise rectangular
5. Fix redraw problems with ">>" buttons on toolbars. (The buttons
   that appear when an app is shrunk too much.)
6. Fix slider redraw errors when using scroll wheel.

0.47
----
 1. Always draw light border around glass elements.
 2. Removed the following config options:
        Custom light border colour
        Fill used slider groove - always filled.
        Stripped progress - always striped
        V Arrows
        Check/radio background highlight
        Round menubar item top only
        Draw statusbar frames - never drawn.
        Highlight selected text fields - always.
        Standard highlight for inactive windows - always
        Listview lines are either on/off, not off/dotted/solid
        Scrollbars and sliders share same config options
        Check radio colour setting - always text colour
        Border/round menubar/items - always rounded/bordered.
        Roundedness - always rounded.
        Listview settings - always arrows, no lines, and header
                            follows general appearance.
        Tab appearance - set from general appearace.
        Draw dock window titles - never.
        Coloured sidebar buttons - always.
 3. Changed appearance of check/radios - now filled with base
    colour.
 4. Etch look for button, combos, line edits, and spin boxes.
 5. Fill check/radio background on mouse over.
 6. Remove --enable-old-shading
 7. Modify shade settings so that what was "Shade selected" becomes
    "Shade blended selected", and add a new "Shade selected" that just
    uses the selected background colour without blending.
 8. Round slider thumbs.
 9. Option to draw a shadow underneath buttons.
10. Draw a rounded gray rectangle for focus - option to set this to
    windows-like focus.
11. Only set min button width for buttons whose text is not "...".
12. Removed save/load functionality from config dialog - only import/export
    left.
13. Re-fix kaffeine's sliders.
14. Hacky fix for scrollbars within tdehtml.
15. Remove main frame that surounds kontact.
16. Fix search field/results in systemsettings.

0.46.4
------
1. Only draw gradients if width>0 && height>0

0.46.3
------
1. Fix look of flat/raised style menuitems and progressbars.
2. Fix look of read-only KLineEdits.

0.46.2
------
1. Remove rgb2Hls() and hls2Rgb() unless using old style shading.
2. Don't mouse-over disabled tabs!
3. Fix look of flat style tabs.

0.46.1
------
1. Fix location of arrows on secondary scrollbar buttons.
2. New shading routine - works *much* better with dark colour
   schemes. This is enabled for all colours be default, to
   enable only for dark colours (i.e. where red, green,
   and blue < 96), then configure with --enable-old-shading

0.46
----
1. Allow negative highlight factors.
2. Allow usage of light borders on menuitems and progressbars, 
   as well as a custom colour setting. Patch by Frederic Van Assche
3. Dont fill in slider grooves of disabled sliders. Patch by Frederic Van Assche
4. Dont allow OO.o menubar shading if this would require swapping
   text colours - cant do this in OO.o.

0.45.3
------
1. Correctly place check and radio buttons.
2. Improve drawing of very small progress.

0.45.2
------
1. Make kaffeine's sidebar buttons consistent when coloured.
2. Fix look of dvd authoring wizard buttons.

0.45.1
------
1. Restore pre 0.45 inactive window highlight. Option is
   still there to re-activate.
2. Fix dark text appearing on progressbars.
3. Use TDEStyle to draw status bar elements - if enabled.

0.45
----
1. Option to control whether highlighted items should use
   the highlight colour in inactive windows.
2. Option to control whether menubars should be shaded in
   inactive windows.
3. Fix loading / selection of options.

0.44.3
------
1. Dont colour sliders when disabled/maxed-out.
2. When drawing light slider border, draw around all 4 sides.
3. Fix gambas toolbar.
4. Use Qt's qconfig.h to determine endianess.
5. Slight code clean-up.

0.44.2
------
1. Restore 0.43 scrollbar trough shade.
2. Fix slight redraw errors when no scrollbar buttons.
3. Fix redraw problems with pathbar.

0.44.1
------
1. Fix errors when drawing status bar frames.
2. If using lighter popup menu backgrounds, correctly adjust to
   palette changes.
3. When exporting the current or default style, prompt user
   for style name.

0.44
----
 1. Specifiable colours for check and radio indicators.
 2. Options to control whether menu items should be rounded.
 3. Options to control whether menu items should be bordered.
 4. Option to enable mouse-over for menubar items.
 5. Option to have thinner menu items.
 6. More pronounced gradients for menuitems and progressbars.
 7. Option to use large dots.
 8. Option to set scrollbar button type: kde, windows, platinum,
    next, or none.
 9. Slightly better radios in tdehtml.
10. Slightly smaller buttons.
11. Option to have coloured side-bar buttons - e.g. the buttons on the
    edge of kate's windows.
12. Improvement to Opera's MDI buttons in menubar area. Not
    perfect, but better.
13. Draw menubar item pixmaps - e.g. page icon in opera.
14. Possible fix for pixmap recolouring on big endian systems.

0.43.2
------
1. Fix the config dialog to notice changes in menu text colour settings.
2. Dont draw menubar text twice!

0.43.1
------
1. Supplied pre-compiled pixmaps.

0.43
----
 1. Option to draw light border around sliders.
 2. Tab mouse-over is now always enabled.
 3. Dialog fix is now a config option, not compile option.
 4. 'AA' slider handles in slight rounded mode.
 5. Really fix KDE 3.5.5 taskbar flicker...
 6. Slight improvement to combobox when right-to-left
 7. Seperate specification of scollbar slider, and range slider, settings.
 8. Option to specify menubar text colours.
 9. New 'flat' appearance.
10. Options to use a coloured border for mouse-over.
11. Nicer looking check and radio buttons - using pixmaps.
12. Fix ./configure problems - by setting a default prefix.

0.42.3
------
1. Fix flickering of taskbar buttons in KDE 3.5.5 - thanks to
   Patrice Tremblay
2. Don't fill slider groove if min value == max value
3. Apply modal 'hack' to kdialog as well - but only if not embedded.
4. When applying modal hack to kdialog and kprinter, remove " - KPrinter"
   and " - KDialog" from captions.

0.42.2
------
1. Fix slider focus rect.
2. Fix problem with selected bottom tab when tab highlighting is off.

0.42.1
------
1. Revert checkbox mask.
2. Fix loading of custom themes.
3. Fix progress always being striped.
4. Fix not being able to delete custom styles.

0.42
----
 1. Optimisation to some drawing routines.
 2. Removal of sunken gradients for progress and menubar items.
 3. Progressbar and menuitem look now set via appearance setting.
 4. Flat style check/radios match non-flat style more.
 5. Remove "Border Splitters" option.
 6. Removal of "Light Gradient" and "Gradient" -> replaced with just
    "Gradient" (which is the previous "light Gradient")
 7. Nicer progressbar style - options to have striped and animated.
 8. Option to have dots for slider thumb.
 9. Configurable splitter style - sunken lines, raised lines, dashes,
    dots.
10. Apply --enable-parentless-dialogs-fix to non-modal dialogs as well.
    These will now not get a taskbar entry.
11. Selected/normal tab appearance selectable.
12. Option to control the roundedness.
13. Option to fill in the used portion of slider groove.
14. Gradient slider and scrollbar troughs.
15. Draw gradients into a pixmap, and then cache this for later use.
16. Display dock window titles.
17. Make OO.os file dialog have no taksbar/pager entry (if
    --enable-parentless-dialogs-fix is specified).
18. Better rounded look for TDEHTML widgets.

0.41.1
------
1. Compile fix if --enable-tab-mouse-over is not specified.

0.41
----
 1. Fix glass gradient match between toolbar button and empty area.
 2. Dont limit the max area of glass gradient.
 3. Discover home folder via getpwuid(geteuid()) before $HOME
 4. For root, check $XDG_CONFIG_HOME is in ~root - if not, then
    set to ~/.config
 5. Improve appearance of widgets that derive from KTabCtl
 6. Apply parentless dialog fix to windows created at app startup.
    e.g. guidance config modules.
 7. Option to have a coloured border for default button
 8. Fix some tabs text not moving when selected.
 9. Don't mouse-over highlight the selected tab.
10. Show 0% -> 50% in config ui, not 100% -> 150%
11. Fix look of disabled tab widgets
12. Rounded headers

0.40
----
1. Better rounded tabs
2. Configurable highlight factor - 0% to 50%
3. Experimental hack to fix parentless modal dialogs (i.e. kate's
   close warnings, most kaffeine dialogs). Disabled by default,
   enable with --enable-parentless-dialogs-fix
4. Move scrollbar, and spinbutton, arrows down/left when pressed
5. Depress combos when active
6. Enable mouse-over highlights for tabs, with --enable-tab-mouse-over
   ./configure option. Note, this currently *only* works for KDE and not
   Gtk - hence why it is disaled by default.
7. Improve the appearance of KTabCtl widgets - not perfect, but better.
8. Fix slider focus rect
9. Default style is set from:
    a. Coded settings
    b. Settings read from /etc/qt/qtcurvestylerc
    c. Settings read from /etc/qt3/qtcurvestylerc
    d. Settings read from /etc/qt4/qtcurvestylerc

   e.g. to make "Shiny Glass" the default style, copy
         Glass1.qtcurve to /etc/qt3/qtcurvestylerc

0.39.1
------
1. Fix for sunken frames
2. Fix slight drawing errors on 1st non selected tab
3. Fix reading of custom slider colour
4. OpenOffice.org frame fixes
5. Fix focus rect on sliders
6. Draw border around pressed kicker buttons - e.g. KMenu
7. Only draw line under main konqueror tabs, not settings tabs
8. Proper listview headers for dialogs coming from kicker

0.39
----
 1. KDE: Really theme dock window handles - i.e. no more text. Forgot
         to actually include this in 0.37!
 2. KDE: Nice dock window resize handles.
 3. KDE: On konqueror's active tab, draw light line at bottom.
 4. ALL: Dont round the focus rect, seems to cause problems.
 5. ALL: Dont shrink focus rect for listview entries.
 6. ALL: Split into KDE and Gtk packages.
 7. ALL: Option to not gradient selected tab.
 8. ALL: Store/read config settings from $XDG_CONFIG_HOME/qtcurvestylerc
 9. KDE: Use a '-' for tristate checkboxes
10. GTK: Implement tristate for checkboxes and radios
11. ALL: Round tab widgets
12. ALL: Round frames
13. ALL: Rounder progress bars
14. ALL: Wider splitters
15. ALL: Remove non-bordered option.

0.38
----
1. GTK1: Compile fix.
2. GTK2: Don't turn firefox text white when mouse over!
3. ALL:  Inverted gradients option.

0.37
----
 1. KDE: Better +/- spinbuttons.
 2. ALL: Better bevelled gradients.
 3. ALL: Option to draw a coloured focus rectangle.
 4. ALL: Modified default:
            Bevelled gradient
            Coloured focus
            Dotted handles/serparators
            Normal arrows
            No listview lines
 5. ALL: Make glass extend to full width and height of widgets
         - no 3d border.
 6. ALL: In listviews, draw focus rectangle within item.
 7. KDE: Use dots also for general handles - more consistent.
 8. KDE: Theme dock window handles - i.e. no more text.
 9. KDE: Fix/hack look of MDI window buttons.
10. GTK2: Hackish fix for firefox and KDE's "apply colours to non-KDE apps"
          setting.
11. GTK: Fix for tear of menu background.

0.36
----
1. KDE: Fix for "Search" label in ksysguard, etc.
2. KDE: Fix pixmap based menu items - e.g. Kig's colour sub-menu.
3. KDE: Use a slider width of 16 for kpresenter, it seems to assume
        this regardless of the style used :-(
4. GTK: Fix line-edits always being rounded.
5. GTK2: Fix for OO.o??

0.35
----
 1. KDE: Prevent MainActor from using its horrible colour scheme.
 2. GTK2: Fix for larger "Help" buttons in GIMP.
 3. KDE: Extend gradients to border when border level set to none
         for toolbars and menubars.
 4. KDE: Fix for non-rounded +/- buttons on Karbon toolbar.
 5. ALL: Remove "border" form default button options.
 6. KDE: Fix possible crash with hover widgets.
 7. GTK2: Supply a QtCurve.css file for FireFox 1.5.x, which will:
          * Fix Firefox 1.5.x's button order. The xml file
            needed to do this is taken from PlastikFox - thanks
            to Víctor Fernández
          * Disable emboldening of text on selected tab
          * Use KDE's message/info/error/question icons in dialogs.
          * Move button/toolbar contents when pressed.
 8. GTK2: Custom user.js file to modify FireFox's behaviour:
          * Remove 'instant apply'
          * Use KDE's prefered email client
         This can be enabeld via
             --enable-mozilla-userjs
         ./configure option. Disabled by default.
 9. GTK2: Fix check marks in FireFox menus.
10. KDE: Use similar style for table headers as for listview headers.

0.34
----
1. GTK: Fix for darkening of menubars.
2. GTK: Fix progressbar text.
3. KDE: Hack to get white selected menu item text in OO.o2. Still can't
        do coloured menubars...
4. ALL: Option to disable drawing of statusbar frames.
5. KDE: Dont use dots or dashes for general handles - only for toolbar
        handles.
6. GTK: Fix for not colouting flat menubars.
7. KDE: Slight improvement to tab highlighting.

0.33
----
 1. ALL: Use lighter shading for glass.
 2. GTK2: Use default.kde as KDE icon folder.
 3. KDE: Fix for listview lines sometims drawing over arrows.
 4. KDE: Dont lighten konqueror's status bar - copied from lipstik.
 5. ALL: Allow seperate specification of menubar item and progress
         bar looks.
 6. ALL: New gradient style: bevelled - gradient top/bot, and plain in the
         middle. Affects listview headers, buttons, and combos.
 7. ALL: Allow setting of listview appearance.
 8. ALL: Allow setting of listview header colour - background, button, or
        custom.
 9. ALL: Option to only round top of selected menubar items.
10. ALL: New toolbar handle style: dashes
11. ALL: Remove Gtk1 dependancy for debian .deb file

0.32
----
1. ALL: "Thinner" looking non-selected tabs for glass styles.
2. GTK2: Add ./configure argument
             --disable-mozilla-mods Dont alter user's userChrome.css
3. KDE: Support saving, and loading, of custom schemes.
4. KDE: Predefiend styles are now read in from .qtcurve files
5. ALL: New scheme with old glass look, flat toolbars, and normal arrows.
6. KDE: Re-design of config dialog.
7. ALL: Remove "V?" style naming.

0.31.1
------
1. GTK2: added 2 ./configure arguments:

        --disable-gtk-icons        Dont do KDE-Gtk icon mapping
        --enable-kde-event-filter  Add the event filter to intercept KDE
                                   style changes.

   (Thanks to Vaclav Slavik for the "--disable-gtk-icons" patch)

0.31
----
1. ALL: Better "glass" gradients.
2. ALL: Dont use highlighted text colour to border selected menubar items.
3. GTL2: Remove event filter added in 0.29, this seems to cause problems
         for some people with some apps. So, colour, font, etc. changes
         wont happen in Gtk2 apps until they are restarted.
4. GTK: Dont draw dividers in listview headers, unless header is >10 pixels
5. ALL: Gradient non-selected tabs as well as selected.
6. GTK2: Also look in "hicolour" for icons. Search order will be:
             <chosen theme>, crystalsvg, hicolour
7. GTK2: Map gt-add and gtk-remove stock icons

0.30
----
1. KDE: Shrink menu entries by 1 pixel - to align with Gtk.
2. GTK2: If switch from coloured menus to non-coloured, remove from userChrome.css
3. GTK: Fix for slight redraw error on the top of toolbar buttons.
4. GTK: Better toolbar buttons, etc.

0.29.1
------
1. GTK1: Compile fix.

0.29
----
 1. KDE: More consistent, with Gtk, menu separators.
 2. GTK1: Dont force to flat appearance! (Only menubars are forced to flat,
          as I havnt got round to implementing menubar shading on Gtk1)
 3. GTK2: When looking for firefox/thunderbird's userChrome.css, look for
          <blah blah>.default and default.<blah blah>
 4. KDE: Move handle section into menu bar tab.
 5. ALL: Allow dotted handles - default for V6.
 6. ALL: Allow dotted (V6 default), or no toolbar separators.
 7. GTK: React to KDE style changes - i.e. update colours, fonts, options,
         etc.
 8. GTK2: Fix for text on combos turning white on mouse over.
 9. GTK: Use same menu colour as KDE when shading!
10. ALL: Fix for vertical toolbars.
11. GTK2: Also look in ~/.kde (or $TDEHOME) for user icons.
12. GTK2: Only write userChrome.css if made changes.

0.28
----
1. KDE: Remove some debug.
2. KDE: If selected colour is too dark, just don't recolour OO.o menubars
        - lightening the background colour doesn't look good.
3. ALL: When using glass gradient, round all corners of menubar entry
        selection.
4. KDE: Allow vArrow to be disabled.

0.27.1
------
1. GTK2: Allow to compile with Gtk <= 2.2

0.27
----
 1. ALL: Slightly lighter non-selected tab, and scrollbar groove, shading.
 2. KDE: Fix for sliders in kaffeine.
 3. KDE: Finally fixed 'V' arrows!
 4. GTK2: Firefox & thunderbird - edit user's userChrome.css file to set
          KDE buton order, and adjust menu text if using a dark background.
 5. ALL: If using selected for background on menus, automatically use selected
         text colour - as opposed to try to see if its too dark.
 6. GTK: Consistent menubar shade with KDE.
 7. GTK2: Try to set toolbar style, icon size, icons-on-buttons from KDE
          settings.
 8. GTK2: Set alternative button order.
 9. GTK2: Map some KDE icons to GTK icons.
10. KDE: Increase OO.o menu selection brightness if selected colour is 'too dark'
11. GTK: Better AA'ing around edit fields.
12. GTK: Better toolbar borders with inkscape.
13. ALL: Only round menubar items on top.
14. GTK: Read /etc/qt3/qtrc, /etc/qt3/qtcurvestylerc, /etc/qt/qtrc,
         /etc/qt/qtcurvestylerc before reading $HOME/.qt/qtrc, etc.
15. KDE: More consistent, with Gtk, menu check boxes.
16. GTK2: Smaller toolbars for AbiWord
17. ALL: Un-revert header changes. Fixed KDE table look, and seem to have
         fixed listview redraw!

0.26
----
 1. GTK2: Fix for combobox separator not always re-drawing.
 2. GTK2: More KDE-like comboboxes
 3. GTK: Use black dashes for focus.
 4. GTK2: Fix for button of some editable comboboxes.
 5. KDE: Better combobox metrics, etc.
 6. ALL: Option to gradient toolbars.
 7. KDE: Fix for "Search" label in systemsettings toolbar.
 8. ALL: Allow custom menubar and slider colours.
 9. GTK: Fix for not drawing coloured slider when flat.
10. ALL: Revert the header changes - had redraw problems.
11. ALL: Fix for tab-bar highlight when using light selection colours.
12. KDE: Fix for non-bordered gradient radio buttons.
13. GTK: More KDE like menu sizing.
14. KDE: Fix/hack for OO.o2.x menubars. If the selected menu colour is toodark,
         then lighten. This is required as OO.o always draws the menu text
         dark! It seems to have a check for plastik style though, and then
         it draws selected popup menu items white.

0.25
----
 1. ALL: V5 - Gradient menubar.
 2. KDE: Polish disabled palette, so that all frames, etc. use the theme.
 3. KDE: When press 'Defaults' on settings dialog, set the version correctly,
         and disable the options frame.
 4: ALL: Code cleanup.
 5. ALL: New V6 - Glass like gradients. Not default for the moment.
 6. ALL: Dont gradient non selected tabs.
 7. KDE: Respect setting of "dark lines" for list views.
 8. ALL: Better listview headers.
 9. ALL: Only round 1 side of spinbuttons.
10. ALL: Rounded entry fields (lineedits, spinwidgets, comboboxes)
11. ALL: Highlight entry boxes, spin widget entry, and combobox entry on focus.
12. KDE: More consistent with Gtk toolbar separators
13. ALL: When using light popup menu background, also use a lighter colour
         for the background of checked menu items.
14. GTK: Use same base shade for menus/progress bars as for KDE.
15. GTK2: More KDE-like combobox lines
16. GTK: Fix for some combo box variants having a 1-pixel white border.
17. ALL: If light gradient and no border, need to add edges to buttons, etc.
18. KDE: Only highlight spinbutton that mouse is over - Gtk like.

0.24.2
------
1. KDE: Compile fix.

0.24.1
------
1. GTK1: Compile fix.

0.24
----
1. ALL: Lighter background for pressed buttons, etc.
2. ALL: Use KDE's buttont text colour for buttons!
3. Remove seperate V1, V2, etc style files (.themerc, and gtkrc files),
   => needs KControl to switch variant.
4. ALL: New V5 style - has the follwing differences from V4:
         Darker menubar background
         Lighter popup menu background
         Flatter gradient in probress bar and selected menu items
         'V' arrows
         Highlight strip on selected tabs
         Shade sliders to the 'selected' colour
5. KDE: Fixed (actually implememented!) drawing of spinbox +/- buttons.
6. KDE: Fixed drawing of V arrows - sometimes were not filled in.
7. GTK: Make default font & colours match KDE3.5's defaults.

0.23.1
------
1. Compile fix.

0.23
----
 1. GTK: Fix colouring of check/radios.
 2. GTK: Fix bonobo toolbars - e.g. on nautilus 2.4.
 3. GTK: Draw handles on GNOME panel 2.4.
 4. GTK: Fix arrows going white when kde exports colours.
 5. GTK: Fix for some menu items in Gaim.
 6. GTK: Fix V1 style check/radios sometimes having the selected colour as
         background
 7. GTK: Fix anti-aliasing on rounded radios when using gradient but no border.
 8. GTK2: Fix for rendering of toggle buttons in lists/cells - patch from
          Alfons Hoogervorst
 9. ALL: Draw "pressed" background on all checked menu items, not just those with
         icons.
10. ALL: Highlight splitters on mouse-over
11. ALL: New V4 (default) style, with the following:
         Flatter gradient
         Font colour used to border default buttons
         No bold text on default button
         Raised gradient (like buttons) for progress and menu bar selections
         Rounded menubar selections
         No border on splitters, use dots instead
12. KDE: Polish application palette, so that all frames, etc. use the theme.
13. KDE: Align kicker's handles better with the little arrows.
14. KDE: Support mouse over for kicker taskbar buttons >= 3.4
15. KDE: Mouse over for spin widgets.
16. KDE: Increase toolbar button size - match GTK better.

0.22
----
1. KDE: Remove scrollbar groove flicker.
2. KDE: Remove editable combo-box flicker.
3. ALL: New check/radio list code.
4. KDE: Custom checklist controller.
5. ALL: List view expanders - +/- (V1/V2), or arrows (V3)
6. KDE: List view lines - none, dotted (V1/V2), solid (V3)
        (GTK does not (?) support lines between elements - so this setting will
         not affect GTK apps)
7. KDE: Dark (V1/V2) or light (V3) list view lines. (Ditto)

0.21
----
1. ALL: Adjust contrast settings to make lower-contrast the default.
2. ALL: Toolbar and menubar borders: none, light, and dark (previous default)
3: ALL: V3 now uses "light" toolbar/menubar borders.
4. KDE: Don't AA radiobuttons on HTML pages.
5. KDE: Squared-off splitters.
6. GTK: Fix base/prelight colour.
7. GTK: gcc 3.4 compile fix - thanks to Adam Gorzkiewicz
8. KDE: Make tabs more GTK like.
9: KDE: More GTK-like positioning of pushbutton icons - looks *much* nicer :-)

0.20
----
1. GTK: Compile fix when compiled with KDE<3.2
2. KDE: Slightly thinner menuitems.
3. GTK: Match KDE's menuitem size better.
4. GTK: Allow checks and radios to be re-coloured.
5. ALL: Better AA for the edges of checks and radios - not perfect tho.
6. GTK: If $HOME is not set, then try to ascertain from passwd entry.
7. KDE: 5 pixel border around pushbutton contents.

0.19
----
 1. KDE: Fix for KDE not setting autoDefault() property of button - assume all
         buttons can be default, leaving space for indicator.
 2. ALL: Optional triangle as default button indicator.
 3. GTK: Match KDE's export gtkrc colours.
 4. GTK2: Fix check/radio highlight so that it is not overridden by KDE's
          export colours setting.
 5. ALL: Add option to enable/disable highlighting of check/radio labels.
 6: ALL: V3 - disable check/radio label highlight.
 7: ALL: V3 - use triangle as default button indicator.
 8: KDE: Fix menu button icon on konqueror's sidebar.
 9: ALL: Allow setting of slider thumbs: raised, sunken, or none.
10: ALL: Allow setting of handles: raised or sunken.
11: ALL: V3 - use sunken handles.
12: KDE: Fix for korn.
13: KDE: Fix for titlebutton on floating Qt windows - e.g. docks.
14: KDE: Fix for amaroK - buttons in player window were too large!

0.18
----
1. KDE: Fix for colouring of kicker's task buttons - i.e. these should have highlight
        colour when an app is opened in the background.
2. KDE: Use ::qt_cast<type *>(widget) as opposed to widget->inherits("type") whenever
        possible.
3. GTK2: Compile fix.

0.17.2
------
1. GTK: Compile fix when compiled with KDE<3.2

0.17.1
------
1. KDE: Use Qt 3.1 for ui file - so that will compile with Qt3.2, etc...
        (Using 3.1 as I only have 3.1 and 3.3 installed...)

0.17
----
1.  GTK: Compile fix - used C++ syntax in C code, oops...
2.  GTK2: Make focus rects more like KDE's
3.  KDE: Allow combo-boxes and scrollbars to be recoloured.
4:  ALL: If compiled with KDE3.2 then there is only 1 style "QtCurve", and
         only 1 set of GTK gtkrc files installed. Variation (V1, V2, V3, or
         custom) can then be selected via KControl.

         (NOTE: When upgrading from KDE3.1, you may wish to uninstall the
         previous QtCurve release - to remove the old V2 and V3 config files)
5:  ALL: Better non-bordered gradient radio/checks.
6:  ALL: Option to use non gradient progress/menu bar indicator.
7:  GTK: Don't shade paned widgets!
8:  ALL: V1 has flat progress bar and menuitems - i.e. no gradient effect.
9:  ALL: If no borders are selected and gradient selected, then use thin border
         for progress bar and menuitems.
10: KDE: Better AA'ing of edges of round buttons.
11: GTK: Fix for background colour of selected text, thanks to David Rodr�uez Garc�
12: ALL: Use KDE's contrast setting.
13: KDE: Implement tri-state checkmarks.
14: ALL: Better bottom/right tab gradients.
15: KDE: (Qt>=3.2) the text/icon of a selected bottom tab moves down 1 pixel.
16: KDE: (Qt>=3.2) Only highlight text/check label if mouse is over sensitive area.
17: KDE: Mimic GTK's scrollbar highlighting. i.e. only highlight slider if mouse is
         over slider area, and likewise for the buttons.
18: KDE: When kicker is set to transparent (may need to restart kicker), use "harsh"
         rounded buttons in round mode. (i.e. don't AA the corners)
19: KDE: Modified button size code - KDE3.2's kcalc is smaller now!
20: KDE: Don't flatten combo box arrow area when selected - more GTK like.
21: KDE: Highlight clickable listview headers on mouse over - more GTK like.
22: GTK: HScrollBar fix.
23: KDE: More Gtk like shading of buttons - i.e. always dark when pressed.
24: ALL: Slight change to look of combo-box.
25: KDE: Fix for tabwidgets in konqueror, etc.

0.16
----
1: ALL: Use "button text" colour for default button indicator, apart from when in
        rounded mode (i.e. V3)
2: ALL: V3 - Embolden font of default button.
3: ALL: V3 - Lighter background for disabled check/radios.
4: ALL: V3 - Correct AA colour for radio indicator.
5: KDE: Draw triangular tabs the same as rounded - prevous versions defaulted to
        TDEStyle.
6: KDE: Add 10pix (2*10) border to non-default buttons.
7: KDE: Implement masks for checks and radios - helps with tdehtml.

0.15
----
1.  KDE: Smaller, more Gtk-like toolbar separators.
2.  ALL: When drawing rounded, use background colour for corner pixels.
3.  ALL: V2, use a shade of the button colour for the default indicator.
4.  ALL: V3, as for V2 above, but "round" the indicator.
5.  KDE: When compiled for Qt 3.2, only highlight pixmap and text on mouse over
         for radio and checkboxes - as these are the only sensitive parts. (Qt < 3.2
         the whole widget is sensitive - and this can expand past text.)
6.  KDE: Fix bottom tabs - i.e. movement of text/icon. (Qt >= 3.2 !)
7.  GTK: Fix bottom tabs on V1
8.  ALL: More rounded buttons, etc.
9:  ALL: Rounded indicator boxes in rounded mode.
10: ALL: Better radio buttons.
11: KDE: Use rounded buttons for Kicker taskbar as well - looks OK now buttons are more
         rounded.
12: GTK: Fix gradient rendering bug - seemed to affect GTK1 glade buttons. (When a partial
         button had to be re-drawn, the whole button was re-drawn instead - clearing out the
         text!)
13: GTK: Use "check" for check and radio's in menus - more Qt like.
14: ALL: V3 - Gradient radio's and checks.

0.14
----
1. GTK2: Set slider width to 16 pixels to better match KDE.
2. GTK: Draw border around toolbar buttons 1 pixel smaller - saves overlap with frame.
3. GTK: Better tabs - GIMP 1.3's tab icons should now move. (GIMP's tabs are shaded
        tho, hmm...)
4. ALL: V3 style uses "pyramid" (i.e. non "V" like) arrows.
5. KDE: Fix for menubar background if button colour != background colour.
6. KDE: Fix for background of "Location:" on konqueror.
7. GTK: Better lsitview headers - smaller, more KDE like.
8. GTK: Reduce differences in V1, V2, and V3 gtkrc files to the bare minimum - ready
        for only 1 (KControl) configurable style.
9. GTK1: Fix (hack really) for range grooves. For some reason these were not being
         drawn when first displayed. Works ok for ranges - but scrollbar grooves are still
         messed up! The redraw only happens after you leave the widget!

0.13
----
1. ALL: New V3 style - has rounded buttons, and uses gradient effect on buttons, tabs,
        scrollbars, etc. 
2. ALL: Code clean-up.

0.12
----
1. KDE: Don't have flat buttons - i.e in printmgr, and kscd.
2. KDE: Default frame width of 1.
3. KDE: Fix mouse-over for some toolbar buttons - the on/off type. Affects most KDE styles,
        but a real KDE fix should be in KDE3.2
4. GTK2: Fix bug where V2 style options were being ignored.
5. GTK2 and KDE: When highlight a depressed button, use a lighter
                 shade of the depressed colour - and not the standard
                 highlight colour.
6. GTK: Active tab bar text is 1 pixel higher - a la KDE.
7. KDE: Fix for borded bottom tabs.

0.11
----
1. GTK2: Fix possible memory corruption.
2. ALL: Square off splitter - more consistent.
3. GTK2: Fix for 2.2.x combo-boxes.

0.10
----
1. GTK2: Better match of menubar height with KDE.
2. GTK:  Fix up/down/left/right arrows.

0.09
----
1. GTK2: Fix scrollbars for 2.2.x - scrolled 1 pixel too much.
2. GTK1: Fix lower spinbutton height. This was OK, so maybe its a Gtk
         change. But from which version? I'm at 1.2.10

0.08
----
1. GTK: Better menu selection.

0.07
----
1. KDE: Reduce min-size of combo-boxes.
2. GTK: Fixes for sodipodi - works with V1, not too good wrt V2...
3. GTK2: Fix for GTK2.2 font setting.

0.06
----
1. GTK: Make combo-boxes thinner.
2. GTK: Allow ussage of GTK1 font substitution file, either 
        /etc/X11/qt_gtk_fnt2fntrc or ~/.qt/gtk_fnt2fntrc, and format:

        <replace from> <with>

        e.g.

        Arial=Helvetica

        This would cause GTK1 apps to use Helvetica, even if KDE/KControl
        has specified Arial. Idea (& patch) supplied by Adrian Schroeter.

0.05
----
1.  ALL: Don't draw lines on scrollbars if less than 20 pixels.
2.  GTK1: Allow to specify x and y thickness's in gtkrc file - as
          happens in GTK2. Fixes bug with small menu entries.
3.  GTK2: Remove 1 pixel border from menus - more consistent with GTK1,
          and KDE - not for V2.
4.  GTK: More KDE-like menu bar entries.
5.  GTK: Re-do weight ranges - would mean 48 is accecpted as "Normal"
6.  ALL: Now 2 styles:
             QtCurve      No borders around buttons, menus, and tab bars
             QtCurve V2   Has borders - more like original B???/FreeCurve
7.  ALL: Number of lines on toolbar handles is now 2, and 4 for scrollbars
         and sliders.
8.  ALL: Dark scrollbar, slider, and progress background - window colour
9.  GTK1: Fix for slider background.
10. GTK2: Fix error with overlapping check/radio highlight on frame.
11. GTK2: Fix spinbuttons.

0.04
----
1.  KDE: Draw box around checked checkable menu item pixmaps.
2.  KDE: Only use small arrows on spinbuttons, and only if size is
         too small for larger.
3.  KDE: Set min button size to 54 and not 70.
4.  ALL: Remove progress bar border.

0.03
----
1.  KDE: Don't highlight disabled menu items - mimics GTK behaviour.
2.  KDE: Progress bar background now matches GTK's.
3.  GTK: Progress bar gradient is now the same as menu bar items - as
         was KDE.
4.  GTK: Progress bar contents now have 1 pixel border like KDE.
5.  GTK: Better spinbutton boxes.
6.  KDE: More GTK like spinbuttons.

0.02
----
1.  Use gtk-config and pkg-config to determine install location for
    GTK 1 and 2 files.

0.01
----
Initial release.