-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.pre-git
7712 lines (5661 loc) · 253 KB
/
ChangeLog.pre-git
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
2009-04-13 Benjamin Berg <[email protected]>
* test/Makefile.am:
There are no failures in the exported test, as the functions do not
need to be marked as internal with the patch from bug #576787.
Fixes bug #578882.
2009-04-13 Benjamin Berg <[email protected]>
* NEWS:
Corrected the version numbers.
2009-04-13 Benjamin Berg <[email protected]>
* NEWS:
Update for 2.18.1.
2009-04-11 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_draw*.c:
(clearlooks_*_draw_scrollbar_stepper):
Remove the steppers line, so that there is only one pixel if two
steppers are next to each other.
2009-04-04 Benjamin Berg <[email protected]>
* engines/glide/src/glide_gtk2_support.c:
(glide_gtk2_engine_hack_menu_shell_setup):
* engines/hc/src/hc_gtk2_support.c:
(hc_gtk2_engine_hack_menu_shell_setup_signals):
* engines/redmond/src/redmond_gtk2_misc.c:
(redmond_gtk2_engine_hack_menu_shell_setup_signals):
Remove some usage of deprecated definitions. Bug #572178
2009-04-03 Christian Persch <[email protected]>
* engines/Makefile.am: Also dist the symbols file. Bug ##576787
follow-up.
2009-04-02 Christian Persch <[email protected]>
* engines/clearlooks/Makefile.am:
* engines/crux/Makefile.am:
* engines/engine.symbols:
* engines/glide/Makefile.am:
* engines/hc/Makefile.am:
* engines/industrial/Makefile.am:
* engines/lua/Makefile.am:
* engines/mist/Makefile.am:
* engines/redmond/Makefile.am:
* engines/support/Makefile.am:
* engines/thinice/Makefile.am: Only export the necessary symbols. Bug
#576787.
2009-04-02 Christian Persch <[email protected]>
* engines/clearlooks/src/clearlooks_draw.c:
(clearlooks_set_mixed_color):
* engines/clearlooks/src/clearlooks_draw.h:
* engines/clearlooks/src/clearlooks_draw_glossy.c:
* engines/clearlooks/src/clearlooks_draw_gummy.c: Fix unresolved
symbol error. Bug #576786.
2009-03-18 Andrea Cimitan <[email protected]>
* engines/clearlooks/src/clearlooks_draw.c (clearlooks_draw_entry):
* engines/clearlooks/src/clearlooks_draw_gummy.c
(clearlooks_gummy_draw_entry):
* engines/clearlooks/src/clearlooks_style.c
(clearlooks_style_draw_box):
* themes/Clearlooks/gtk-2.0/gtkrc:
Fixed the focus inner shadow in draw_entry.
Fixed the focus_color in the gtkrc, needs to be backported in
gnome-themes.
2009-03-16 Benjamin Berg <[email protected]>
* configure.ac:
Post release version bump.
2009-03-16 Benjamin Berg <[email protected]>
* NEWS:
* configure.ac:
Update for 2.18.0.
2009-03-16 Benjamin Berg <[email protected]>
* test/torturetest.c:
Also test the new "entry_progress" detail string.
2009-03-10 Andrea Cimitan <[email protected]>
* engines/clearlooks/src/clearlooks_draw.c
(clearlooks_draw_entry_progress):
* engines/clearlooks/src/clearlooks_style.c
(clearlooks_style_draw_box):
Coding style.
2009-03-10 Andrea Cimitan <[email protected]>
* engines/clearlooks/src/clearlooks_draw.c (clearlooks_draw_entry):
* engines/clearlooks/src/clearlooks_draw_gummy.c
(clearlooks_gummy_draw_entry):
* engines/clearlooks/src/clearlooks_style.c
(clearlooks_style_draw_shadow):
* engines/clearlooks/src/clearlooks_types.h:
* themes/Clearlooks/gtk-2.0/gtkrc:
Fixed a regression in the focus color of the GtkEntry introduced with
the entry_progress commits.
2009-03-08 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_draw.c:
(clearlooks_draw_entry_progress):
* themes/Clearlooks/gtk-2.0/gtkrc:
Fix the radius of the clearlooks entry progress drawing and do the
necessary changes in the theme.
2009-03-06 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_draw.c:
(clearlooks_draw_entry_progress),
(clearlooks_register_style_classic):
* engines/clearlooks/src/clearlooks_style.c:
(clearlooks_style_draw_box):
* engines/clearlooks/src/clearlooks_types.h:
Support for entry progress drawing.
2009-03-02 Benjamin Berg <[email protected]>
* configure.ac:
Postrelease version bump.
2009-03-02 Benjamin Berg <[email protected]>
* NEWS:
Update for 2.17.4 release.
2009-03-02 Benjamin Berg <[email protected]>
* engines/crux/src/crux-draw.c: (paint_progress_bar), (draw_box):
* engines/thinice/src/thinice_theme_draw.c:
(thinice_style_draw_box):
* themes/Crux/gtk-2.0/gtkrc:
* themes/Industrial/gtk-2.0/gtkrc:
* themes/Mist/gtk-2.0/gtkrc:
* themes/Redmond/gtk-2.0/gtkrc:
* themes/ThinIce/gtk-2.0/gtkrc:
Some improvements for the progressbar in entries. Things could
certainly be better, but at least this should make it more usable.
2009-02-17 Benjamin Berg <[email protected]>
* configure.ac:
Post release bump to 2.17.4.
2009-02-16 Benjamin Berg <[email protected]>
* Makefile.am:
Fix distcheck for 2.17.3.
2009-02-16 Benjamin Berg <[email protected]>
* NEWS:
Update for 2.17.3 release.
2009-02-15 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_style.c:
(clearlooks_style_draw_focus):
Draw a "label" focus for expanders. (bug #571835, Till Berger)
2009-02-11 Benjamin Berg <[email protected]>
* MAINTAINERS:
Remove Andrew and add Andrea. Also removed some old entries.
2009-02-11 Benjamin Berg <[email protected]>
Move gtk-engines completely to LGPL-2.1 or any later version. To my
knowledge everyone has given their permission to do this change.
2008-12-14 Benjamin Berg <[email protected]>
* engines/*.h:
* engines/*.c:
Move everything to one header includes.
Bug #563787, Patch by Luis Menia
2008-12-07 Benjamin Berg <[email protected]>
* configure.ac:
Post release bump to 2.17.3.
2008-12-07 Benjamin Berg <[email protected]>
* NEWS:
2.17.2 release (for the build fix)
2008-12-07 Benjamin Berg <[email protected]>
* engines/industrial/src/industrial_style.c:
(industrial_style_class_finalize):
Add industrial_style_class_finalize. Bug #563256.
2008-12-01 Benjamin Berg <[email protected]>
* configure.ac:
Post release bumb to 2.17.2.
2008-12-01 Benjamin Berg <[email protected]>
* NEWS:
2.17.1 release.
2008-11-30 Benjamin Berg <[email protected]>
* engines/*:
Use G_DEFINE_DYNAMIC_TYPE everywhere. Bug #549830.
2008-11-30 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_draw.c:
(clearlooks_draw_radiobutton):
* engines/clearlooks/src/clearlooks_draw_gummy.c:
(clearlooks_gummy_draw_radiobutton):
Fix inconsistent radio button drawing.
2008-11-30 Paolo Borelli <[email protected]>
* engines/clearlooks/src/clearlooks_style.c
(clearlooks_style_draw_box):
Make sure cairo_destroy is called when detail is buttondefault.
Reviewed by Andrea Cimitan.
2008-11-28 Benjamin Berg <[email protected]>
* engines/industrial/src/parse_rc_style.h:
Remove the usage of deprecated glib symbols.
Bug #560443, patch by Travis Veralrud
2008-11-28 Benjamin Berg <[email protected]>
* engines/*/Makefile.am:
Change the oder of the -I flags, so the locale ones are in front of
the global flags. Bug #560042.
2008-11-03 Benjamin Berg <[email protected]>
* configure.ac:
Postrelease bump to 2.17.1.
2008-11-03 Benjamin Berg <[email protected]>
* NEWS:
Update new file for 2.17.0.
2008-11-03 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_draw_gummy.c:
(clearlooks_gummy_draw_button):
Do not draw default indicator, if the button is disabled.
2008-11-03 Benjamin Berg <[email protected]>
* themes/Clearlooks/gtk-2.0/gtkrc:
Fix the bg color of GtkViewport and GtkScrolledWindow in notebooks.
2008-10-18 Benjamin Berg <[email protected]>
* engines/mist/src/mist-style.c:
Make mist_style_draw_focus static.
2008-10-11 Andrea Cimitan <[email protected]>
* engines/clearlooks/src/clearlooks_style.c
(clearlooks_style_draw_box):
Let's return when detail is buttondefault, should fix #555890.
2008-10-07 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_rc_style.c:
(clearlooks_rc_style_init), (clearlooks_rc_style_parse),
(clearlooks_rc_style_merge):
* engines/clearlooks/src/clearlooks_rc_style.h:
* engines/clearlooks/src/clearlooks_style.c:
(clearlooks_set_widget_parameters),
(clearlooks_style_init_from_rc), (clearlooks_style_draw_focus),
(clearlooks_style_copy):
* engines/clearlooks/src/clearlooks_style.h:
* schema/clearlooks.xml.in.in:
Added a disable_focus option for documentation purpose.
2008-10-06 Thomas Wood <[email protected]>
* engines/mist/src/mist-style.c: (mist_style_draw_focus),
(mist_style_class_init): Style the focus indicator in Mist
2008-09-27 Benjamin Berg <[email protected]>
* configure.ac:
Version bump to 2.17.0.
2008-09-27 Benjamin Berg <[email protected]>
* test/torturetest.c:
Add the new icon view detail strings to the torture tester.
2008-09-27 Denis Washington <[email protected]>
* engines/clearlooks/src/clearlooks_draw.c:
* engines/clearlooks/src/clearlooks_draw_glossy.c:
* engines/clearlooks/src/clearlooks_draw_gummy.c:
* engines/clearlooks/src/clearlooks_style.c:
* engines/clearlooks/src/clearlooks_types.h:
Customize drawing of the selection rectangles around GtkIconView
items introduced in GTK+ trunk. (Bug #553575)
2008-09-22 Benjamin Berg <[email protected]>
* NEWS:
* configure.ac:
Update for 2.16.0.
2008-09-05 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_draw.c:
(clearlooks_draw_spinbutton):
Made the horizontal line in the spinbutton smaller.
2008-09-02 Benjamin Berg <[email protected]>
* configure.ac:
Postrelease version bump to 2.15.5.
2008-09-02 Benjamin Berg <[email protected]>
* NEWS:
Update for 2.15.4.
2008-09-01 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_rc_style.c:
* engines/clearlooks/src/clearlooks_rc_style.h:
* engines/clearlooks/src/clearlooks_style.c:
* engines/clearlooks/src/clearlooks_style.h:
* engines/clearlooks/src/clearlooks_theme_main.c:
Use the G_DEFINE_DYNAMIC_TYPE macro provided by GLib.
Bug #549830 Patch by Christian Dywan.
2008-08-20 Andrea Cimitan <[email protected]>
* themes/Clearlooks/gtk-2.0/gtkrc:
Inreased menuitem separator spacing from 5 to 7
2008-08-20 Benjamin Berg <[email protected]>
* themes/Clearlooks/gtk-2.0/gtkrc:
Fix the separator height, which was broken by the last commit.
2008-08-19 Benjamin Berg <[email protected]>
* themes/Clearlooks/gtk-2.0/gtkrc:
Rework the gtkrcs so that all clearlooks based gtkrcs match better.
2008-08-19 Benjamin Berg <[email protected]>
* configure.ac:
Remove useless AM_PROG_CC_STDC. Thanks for Werner Pantke.
2008-08-18 Benjamin Berg <[email protected]>
* configure.ac:
Increase version to 2.15.4.
2008-08-18 Benjamin Berg <[email protected]>
* NEWS:
Update for 2.15.3 release.
2008-08-15 Benjamin Berg <[email protected]>
* configure.ac:
Prerelease version bump to 2.15.3.
2008-08-15 Benjamin Berg <[email protected]>
* themes/Clearlooks/gtk-2.0/gtkrc:
* themes/Industrial/gtk-2.0/gtkrc:
Add gecko's entry workaround style property to the gtkrcs.
2008-08-15 Benjamin Berg <[email protected]>
* engines/industrial/src/industrial_style.c: (real_draw_box):
Fill in the entries background. However, only fill it if the
transparent-bg-hint has not been set.
2008-08-15 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_style.c:
(clearlooks_style_draw_shadow), (clearlooks_style_draw_box):
Fix the check to also fill the background if the widget is NULL.
2008-08-15 Benjamin Berg <[email protected]>
* engines/support/cairo-support.c: (ge_cairo_pattern_fill):
Prevent negative width/height from destroying the patterns for later
drawing operations.
2008-08-14 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_draw.c:
* engines/clearlooks/src/clearlooks_draw_glossy.c:
* engines/clearlooks/src/clearlooks_draw_gummy.c:
* engines/clearlooks/src/clearlooks_style.c:
Add support for the "transparent-bg-hint" for entries and progress
bars.
2008-08-10 David Zeuthen <[email protected]>
* engines/clearlooks/src/clearlooks_draw.c:
(clearlooks_draw_radiobutton):
* engines/clearlooks/src/clearlooks_draw_glossy.c:
(clearlooks_glossy_draw_radiobutton):
* engines/clearlooks/src/clearlooks_draw_gummy.c:
(clearlooks_gummy_draw_radiobutton):
Avoid hardcoding the radio button size (#547024)
2008-08-04 Benjamin Berg <[email protected]>
* NEWS:
* configure.ac:
Update for 2.15.2 release.
2008-08-04 Benjamin Berg <[email protected]>
* README:
Removed the smooth engine from the README.
2008-08-04 Benjamin Berg <[email protected]>
* engines/industrial/src/industrial_style.c:
Include stdio.h. (bug #543608, Rodrigo Moya)
2008-08-04 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_style.c:
(clearlooks_style_draw_shadow):
Removes unnecessary CairoColor cast to fix build on solaris.
(bug #535456, patch by Damien Carbery)
2008-08-04 Benjamin Berg <[email protected]>
* engines/glide/src/glide_gtk2_drawing.c: (glide_draw_option):
Remove dead code found by coverity (bug #501734, Kjartan Maraas)
2008-07-25 Benjamin Berg <[email protected]>
* schema/Makefile.am:
* schema/smooth.xml.in.in:
Forgot to remove the schema.
2008-07-25 Benjamin Berg <[email protected]>
* COPYING:
* configure.ac:
* engines/Makefile.am:
* engines/smooth/*:
* test/Makefile.am:
* test/gtkrcs/smooth:
Removed the smooth engine from gtk-engines.
2008-07-15 Benjamin Berg <[email protected]>
* themes/Industrial/gtk-2.0/gtkrc:
Move the progress bar match in the style. This fixes the
network-manager applet.
2008-07-15 Benjamin Berg <[email protected]>
* engines/industrial/src/industrial_style.c: (real_draw_box_gap):
Fill the gap in notebook correctly (bug #542625).
2008-06-16 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_draw*.c:
(*_draw_list_view_header):
* engines/clearlooks/src/clearlooks_style.c:
(clearlooks_style_draw_box):
* engines/clearlooks/src/clearlooks_types.h:
Change the header button position enum to be a bitfield.
(Bug #511958, Marcus Brinkmann)
2008-06-06 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_draw.c:
(clearlooks_draw_highlight_and_shade):
Draw only half around the corners.
2008-05-29 Andrea Cimitan <[email protected]>
* engines/clearlooks/src/clearlooks_style.c
(clearlooks_style_draw_shadow):
* themes/Clearlooks/gtk-2.0/gtkrc:
Changes menuitem separator height from 5 to 7
2008-05-12 Benjamin Berg <[email protected]>
* NEWS:
* configure.ac:
2.15.1 release.
2008-05-12 Andrea Cimitan <[email protected]>
* engines/clearlooks/src/clearlooks_draw.c
(clearlooks_draw_button), (clearlooks_draw_tab),
(clearlooks_draw_scrollbar_stepper),
(clearlooks_draw_scrollbar_slider),
(clearlooks_register_style_classic):
Fixed tab stripe and different shadings from the original clearlooks.
I think maybe they look better (smoother).
2008-05-12 Andrea Cimitan <[email protected]>
* engines/clearlooks/src/clearlooks_draw.c
(clearlooks_draw_selected_cell):
Removed top & bottom borders.
2008-05-12 Andrea Cimitan <[email protected]>
* engines/clearlooks/src/clearlooks_draw.c
(clearlooks_draw_button):
Changed look of default, get rid of the ugly rectangle.
Maybe I should add a little shadow.
* engines/clearlooks/src/clearlooks_style.c
(clearlooks_style_draw_shadow):
Changed border for scrolled_window
2008-05-12 Andrea Cimitan <[email protected]>
* engines/clearlooks/src/clearlooks_draw.c
(clearlooks_draw_slider):
This one compiles :)
2008-05-12 Andrea Cimitan <[email protected]>
* engines/clearlooks/src/clearlooks_draw.c
(clearlooks_draw_button), (clearlooks_draw_scrollbar_stepper),
(clearlooks_draw_scrollbar_slider):
Use some constants
2008-05-12 Andrea Cimitan <[email protected]>
* engines/clearlooks/src/clearlooks_draw.c
(clearlooks_draw_scale_trough), (clearlooks_draw_slider),
(clearlooks_draw_progressbar_fill):
Better scale trough.
2008-05-12 Andrea Cimitan <[email protected]>
* engines/clearlooks/src/clearlooks_draw.c
(clearlooks_draw_spinbutton), (clearlooks_draw_scrollbar_stepper),
(clearlooks_draw_scrollbar_slider):
Old looking scrollbar sliders & steppers.
2008-05-12 Andrea Cimitan <[email protected]>
* engines/clearlooks/src/clearlooks_draw.c
(clearlooks_draw_list_view_header):
* engines/clearlooks/src/clearlooks_style.c
(clearlooks_style_draw_shadow):
Old looking scrolled window.
2008-05-11 Andrea Cimitan <[email protected]>
* engines/clearlooks/src/clearlooks_draw.c
(clearlooks_draw_scale_trough),
(clearlooks_draw_progressbar_trough),
(clearlooks_draw_progressbar_fill):
First implementation of the old scrollbar,
it is breaking Inverted and maybe Glossy (maybe Gummy? :) )
2008-05-11 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_draw_glossy.c:
(clearlooks_glossy_draw_button):
Fix button inset.
2008-05-11 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_draw_glossy.c:
(clearlooks_glossy_draw_checkbox):
The inset was broken (ie. invisible).
2008-05-11 Andrea Cimitan <[email protected]>
* engines/clearlooks/src/clearlooks_draw.c
(clearlooks_draw_button):
Fixes the right shadow.
2008-05-11 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_draw.c:
(clearlooks_draw_button):
Remove bogus debug code.
2008-05-11 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_draw.c:
* engines/clearlooks/src/clearlooks_draw_glossy.c:
* engines/clearlooks/src/clearlooks_draw_gummy.c:
* engines/clearlooks/src/clearlooks_draw_inverted.c:
More visual fixes.
2008-05-11 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_draw.c:
(clearlooks_draw_button), (clearlooks_draw_entry),
(clearlooks_scale_draw_gradient), (clearlooks_draw_slider):
Fix some bugs I introduced earlier. (This is not 100% everywhere,
but should be close enough.)
2008-05-11 Andrea Cimitan <[email protected]>
* engines/clearlooks/src/clearlooks_draw.c:
(clearlooks_draw_highlight_and_shade), (clearlooks_draw_button),
(clearlooks_draw_entry), (clearlooks_draw_spinbutton_down),
(clearlooks_draw_scale_trough), (clearlooks_draw_frame),
(clearlooks_draw_separator), (clearlooks_draw_list_view_header),
(clearlooks_draw_toolbar):
More work to make Classic look as the old non-cairo version.
2008-05-10 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_draw_inverted.c:
(clearlooks_inverted_draw_button),
(clearlooks_inverted_draw_slider),
(clearlooks_inverted_draw_scrollbar_stepper),
(clearlooks_register_style_inverted):
Code cleanups, and fixes (and 0.5 translation stuff)
2008-05-10 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_style.c:
(clearlooks_style_class_init):
Fix the style initilization.
2008-05-10 Benjamin Berg <[email protected]>
* engines/clearlooks/src/*:
Add "style_constants" in addition to the "style_functions". And
removed the duplication of the top_left_highlight function.
2008-05-10 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_draw.c:
* engines/clearlooks/src/clearlooks_draw_gummy.c:
(clearlooks_gummy_draw_top_left_highlight),
(clearlooks_gummy_draw_button), (clearlooks_gummy_draw_slider),
(clearlooks_gummy_draw_slider_button),
(clearlooks_gummy_draw_scrollbar_stepper):
More 0.5 translation stuff.
2008-05-10 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_draw_glossy.c:
(clearlooks_glossy_draw_tab), (clearlooks_glossy_draw_slider),
(clearlooks_glossy_draw_slider_button),
(clearlooks_glossy_draw_scrollbar_stepper):
Remove some 0.5 translations. The one in draw_tab is still there.
2008-05-10 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_draw.c:
(clearlooks_draw_shadow):
Place the corner correctly.
2008-05-09 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_draw.c:
(clearlooks_draw_handle):
Remove unused variable.
2008-05-09 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_draw.c:
(clearlooks_draw_gripdots):
Fix gripdot placement.
2008-05-06 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_style.c:
(clearlooks_style_realize):
Removed unused variables.
2008-05-06 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_style.c:
(clearlooks_style_draw_box):
Use the present steppers, not the slider position.
* engines/clearlooks/src/support.c:
(clearlooks_scrollbar_visible_steppers):
If this is not a range, assume stepper A and D.
2008-05-06 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_style.c:
(clearlooks_style_realize):
Comment out two broken and unneded lines.
2008-05-06 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_style.c:
(clearlooks_style_draw_box):
Only decrease the size of the scrollbar trough if the
trough-under-steppers style property is set and steppers are present.
Fixes bug #531633.
2008-05-01 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_draw.c:
(clearlooks_draw_scrollbar_stepper),
(clearlooks_draw_scrollbar_slider):
Removed dead code; one translation 0.5 less.
2008-05-01 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_draw.c: (clearlooks_draw_tab):
Removed the 0.5 translation.
2008-05-01 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_draw.c:
(clearlooks_draw_highlight_and_shade), (clearlooks_draw_menubar0),
(clearlooks_draw_menubar2), (clearlooks_get_frame_gap_clip),
(clearlooks_draw_frame), (clearlooks_draw_tab):
* engines/clearlooks/src/clearlooks_types.h:
More cleanups. Frame drawing mostly.
2008-05-01 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_draw.c:
(clearlooks_draw_shadow), (clearlooks_draw_gripdots),
(clearlooks_draw_slider), (clearlooks_draw_slider_button),
(clearlooks_draw_handle):
More 0.5 offset cleanups (and radius fixes).
2008-05-01 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_draw.c:
(clearlooks_draw_top_left_highlight), (clearlooks_draw_button),
(clearlooks_draw_scrollbar_stepper):
Button and clearlooks_draw_top_left_highlight cleanup and small fixes.
2008-05-01 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_draw.c:
(clearlooks_draw_entry):
* engines/clearlooks/src/clearlooks_draw_gummy.c:
(clearlooks_gummy_draw_entry):
Some entry drawing cleanups, and better "radius" handeling.
2008-05-01 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_draw*.c:
Start to clean up the 0.5 translation mess.
2008-04-29 Andrea Cimitan <[email protected]>
* engines/clearlooks/src/clearlooks_style.c:
(clearlooks_style_realize):
Added the variables we should use to adjust spot[2] for dark themes.
Still no algorithm.
2008-04-21 Benjamin Berg <[email protected]>
* NEWS:
* configure.ac:
gtk-engines 2.15.0 release.
2008-04-13 Thomas Wood <[email protected]>
* engines/redmond/src/redmond_gtk2_drawing.c:
(redmond_draw_shadow):
* themes/Redmond/gtk-2.0/gtkrc:
Fix menu borders and padding
2008-04-13 Thomas Wood <[email protected]>
* engines/redmond/src/redmond_gtk2_drawing.c:
(redmond_draw_shadow), (redmond_draw_box): Don't draw a shadow on
scrollbars now that we don't provide them with any padding.
2008-04-11 Thomas Wood <[email protected]>
* themes/Redmond/gtk-2.0/gtkrc: Use new scrollbars-within-bevel
property for GtkScrolledWindow
2008-04-11 Benjamin Berg <[email protected]>
* Makefile.am:
Do not install the translations. Patch from Werner Pantke.
2008-04-09 Benjamin Berg <[email protected]>
* engines/industrial/src/industrial_style.c: (draw_slider):
The stepper button check was only missing in industrial.
2008-04-09 Benjamin Berg <[email protected]>
* engines/clearlooks/src/support.c:
(clearlooks_scrollbar_get_junction):
* engines/industrial/src/industrial_style.c: (draw_slider):
* engines/mist/src/mist-style.c: (mist_style_draw_box):
Fix part 1 of bug #526890 in all affected engines. (Inverted
scrollbars should work fine now, stepper buttons are still ignored.)
2008-04-07 Benjamin Berg <[email protected]>
* NEWS:
* configure.ac:
Update for 2.14.1 release.
2008-04-07 Benjamin Berg <[email protected]>
* test/torture:
Fix running the tests when building out of tree.
2008-04-07 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_style.c:
(clearlooks_style_draw_focus):
Add a workaround for the panel ButtonWidget. This is hopefully just
a intermediate solution until a real fix exists.
2008-04-07 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_style.c:
(clearlooks_style_draw_box):
Work around GTK+ drawing the "spinbutton" box always with state
NORMAL.
2008-04-07 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_style.c:
(clearlooks_set_widget_parameters):
Undo Andrea's change from 2008-03-19. The check was moved to fix
the spinbutton arrow sensitivity. (See bug #475629.)
2008-03-20 Christian Persch <[email protected]>
* configure.ac: Add AM_PROG_CC_C_O. Bug #523369.
2008-03-19 Andrea Cimitan <[email protected]>
* engines/clearlooks/src/clearlooks_style.c:
(clearlooks_set_widget_parameters):
Fix? Workaround?
Anyway this fixes insensitive spinbuttons
2008-03-18 Andrea Cimitan <[email protected]>
* engines/clearlooks/src/clearlooks_draw_gummy.c:
(clearlooks_gummy_draw_scale_trough):
Use shade[2] taken from parentbg to draw the scale trough
2008-03-13 Benjamin Berg <[email protected]>
* engines/clearlooks/src/support.c: (clearlooks_get_parent_bg):
Got the notebook check a bit wrong earlier.
2008-03-13 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_draw.c:
(clearlooks_draw_inset):
* engines/clearlooks/src/clearlooks_draw_glossy.c:
(clearlooks_glossy_draw_inset),
(clearlooks_glossy_draw_light_inset):
* engines/crux/src/crux-draw.c: (paint_shadow), (draw_shadow),
(draw_box), (draw_extension):
Fix compiling with --enable-paranoia. Included here is the patch
from Jens Granseuer for bug #521679.
2008-03-13 Benjamin Berg <[email protected]>
* engines/thinice/src/thinice_rc_style.h:
mark_type2 and paned_dots used the same bit (also fixes compiling
with --enable-paranoia)
2008-03-13 Benjamin Berg <[email protected]>
* engines/clearlooks/src/support.c: (clearlooks_get_parent_bg):
Only use the notebooks background if it draws a border.
2008-03-10 Benjamin Berg <[email protected]>
* NEWS:
* README:
* configure.ac:
Update for the 2.14.0 stable release.
2008-03-10 Benjamin Berg <[email protected]>
* engines/crux/src/crux-draw.c: (draw_box):
Fix a memory leak in the new spinbutton handling code.
2008-03-10 Benjamin Berg <[email protected]>
* engines/crux/src/crux-draw.c: (draw_box):
Fix a regression:
crux would access widget to check the focused state even if widget
is NULL. This could potentially crash applications.
2008-03-03 Thomas Wood <[email protected]>
* engines/crux/src/crux-draw.c: (draw_box_gap), (draw_extension): Add
bevel to notebooks
2008-03-03 Thomas Wood <[email protected]>
* engines/crux/src/crux-draw.c: (draw_shadow_gap), (draw_box_gap):
Replace use of deprecated function
2008-03-03 Thomas Wood <[email protected]>
* engines/crux/src/crux-draw.c: (draw_hline), (draw_vline): Convert
hline and vline functions to cairo
2008-03-03 Thomas Wood <[email protected]>
* engines/crux/src/crux-draw.c: (draw_box),
(draw_handle): Make handlboxes appear "attached" to their child
2008-03-03 Benjamin Berg <[email protected]>
* themes/Crux/gtk-2.0/gtkrc:
Use the right text color for text in progress bars.
2008-03-03 Thomas Wood <[email protected]>
* engines/crux/src/crux-draw.c: (draw_box), (draw_arrow): Fix spin
buttons for RTL locales
2008-03-03 Thomas Wood <[email protected]>
* engines/crux/src/crux-draw.c:
(paint_button): Reduce radius on buttons without an extra shadow and
reduce opacity of extra shadow on insensitive buttons
(draw_shadow): Extend shadow on spinbutton entry widgets to allow
buttons to appears "inside" the entry
(draw_box): Turn extra shadow off for some other widgets and draw a
shadow so that spin button buttons appear "inside" the entry
(draw_arrow): Tweak placement for spin buttons
2008-03-02 Benjamin Berg <[email protected]>
* themes/Clearlooks/gtk-2.0/gtkrc:
Fix the color of prelit menu items in the combobox menu.
2008-03-02 Benjamin Berg <[email protected]>
* themes/Crux/gtk-2.0/gtkrc:
* themes/Industrial/gtk-2.0/gtkrc:
* themes/Mist/gtk-2.0/gtkrc:
Port the workarounds for GtkComboBox (cell renderer),
GtkCList/GtkCTree and GtkList to other color scheme supporting
themes in gtk-engines.
2008-03-02 Benjamin Berg <[email protected]>
* themes/Clearlooks/gtk-2.0/gtkrc:
Use the special name menus get for comboboxes to work around the text
color bug. The old work around breaks radio/check menu items.
2008-03-02 Benjamin Berg <[email protected]>
* themes/Clearlooks/gtk-2.0/gtkrc:
Added a workaround for GtkCList/GtkCTree and GtkList text colors.
Fixes bug #505334 for clearlooks.
2008-03-02 Benjamin Berg <[email protected]>
* engines/clearlooks/src/clearlooks_style.c:
(clearlooks_style_draw_shadow):
Override the entry state early enough so that the params are set
correctly.
2008-03-01 Thomas Wood <[email protected]>
* engines/crux/src/crux-draw.c: (paint_button), (draw_box): Only draw an
extra shadow on widgets with "button" detail, and fix spinbutton padding
2008-03-01 Thomas Wood <[email protected]>