-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog
2309 lines (1509 loc) · 72.9 KB
/
ChangeLog
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-01-14 Federico Mena Quintero <[email protected]>
Remember the file chooser's geometry across invocations.
* gtk/gtkfilechoosersettings.h (struct _GtkFileChooserSettings):
New fields geometry_x, geometry_y, geometry_width, geometry_height.
(_gtk_file_chooser_settings_get_geometry): New prototype.
(_gtk_file_chooser_settings_set_geometry): New prototype.
* gtk/gtkfilechoosersettings.c (GEOMETRY_X_KEY, GEOMETRY_Y_KEY,
GEOMETRY_WIDTH_KEY, GEOMETRY_HEIGTH_KEY): New key names.
(ensure_settings_read): Read the geometry keys.
(_gtk_file_chooser_settings_save): Save the geometry keys.
(_gtk_file_chooser_settings_init): Initialize the geometry keys to
"don't have this value".
(_gtk_file_chooser_settings_get_geometry): New public function.
(_gtk_file_chooser_settings_set_geometry): New public function.
* gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_map):
Don't change the default size in ::map() so we don't flicker...
(gtk_file_chooser_default_realize): ... so do it in ::realize()
instead, when the window is not yet visible. This avoids a
dialog-that-resizes when you first pop up the file chooser.
(emit_default_size_changed): Just emit the signal; don't check for
the widget's state so we can be emitted during the initial
::realize() when we are not mapped yet.
(update_preview_widget_visibility): Only emit default_size_changed
if the widget is not mapped, to avoid resizing the dialog while it
is visible.
* gtk/gtkfilechooserdialog.c
(file_chooser_widget_default_size_changed): Simply resize the
dialog to the default size without any fancy clamping. Also,
leave in place ifdef-ed out code to restore the file chooser's
position in addition to its size. The code to restore the
position doesn't quite work yet, but we'll leave it in as a
reference.
* gtk/gtkfilechooserdefault.c (save_dialog_geometry): New function.
(settings_save): Save the dialog's geometry.
(gtk_file_chooser_default_get_default_size): Load the geometry
from the settings. If it was already saved, return that instead
of computing an ad-hoc size.
2009-01-13 Matthias Clasen <[email protected]>
Bug 450716 – New API to change global IM
Requested by Daniel Elstner.
* gtk/gtk.symbols:
* gtk/gtkimmulticontext.[hc] (gtk_im_multicontext_set_context_id):
New function to set the context id on a GtkIMMulticontext.
* gtk/gtkentry.c:
* gtk/gtktextview.c: Add a ::im-module property that can be
set to override the global setting for the im module to be used.
2009-01-13 Christian Dywan <[email protected]>
Bug 566532 – GtkScaleButton implementation of GtkOrientable
* gtk/gtk.symbols:
* gtk/gtkscalebutton.c (gtk_scale_button_class_init),
(gtk_scale_button_set_property):
* gtk/gtkscalebutton.h: Deprecate gtk_scale_button_get_orientation
in favour of implementing GtkOrientable. Patch by Bruce Cowan.
2009-01-13 Tor Lillqvist <[email protected]>
Bug 164002 - query scripts don't work uninstalled on windows
* gtk/gtkmain.c (_gtk_get_libdir): If the gtk DLL is in a ".libs"
folder, assume we are running uninstalled, and use the
configure-time GTK_LIBDIR.
2009-01-12 Matthias Clasen <[email protected]>
* NEWS: Refer to tray icon spec, instead of a random email.
2009-01-12 Matthias Clasen <[email protected]>
* gtk/gtkwindow.c (gtk_window_set_icon_name): Don't cause lots
of X traffic when the icon name doesn't actually change. Some
apps like to reset their window icon frequently, without actually
changing the icon name...
2009-01-12 Paolo Borelli <[email protected]>
Bug 492794 – Pasting external text at end of view yields wrong
scrolling to mark
* gtk/gtktextbuffer.[ch]:
* gtk/gtktextview.c:
Add a "paste-done" signal and use it to propelry scroll the
view at the end of the pasted text in the case of an async
paste. Patch by Ignacio Casal Quintero based on a patch by
Yevgen Muntyan.
2009-01-12 Tor Lillqvist <[email protected]>
* gdk/gdk.c (gdk_arg_debug_cb) (gdk_arg_no_debug_cb): A
GOptionArgFunc should return gboolean and take also a GError
pointer parameter, so make these two functions do that. Return
FALSE (and set the GError) if the parsing of the debug string
failed completely. Note that g_parse_debug_string() doesn't really
have any way to return parsing status, and accepts partially
incorrect strings, though.
2009-01-12 Claudio Saavedra <[email protected]>
Bug 567468 – no check for trailing != NULL in
gtk_text_layout_get_iter_at_position()
* gtk/gtktextlayout.c: (gtk_text_layout_get_iter_at_position):
Check for trailing to be non-NULL.
* gtk/gtktextview.c: (gtk_text_view_get_iter_at_position): document
that trailing may be NULL.
2009-01-11 Tor Lillqvist <[email protected]>
Bug 523554 - Copy from GIMP to Word broken
* gdk/win32/gdkselection-win32.c
(_gdk_win32_selection_convert_to_dib): The DIB stored in the
Windows Clipboard was for some unknown reason truncated by one
byte. Don't do that.
2009-01-11 Matthias Clasen <[email protected]>
Bug 567024 – gtktoolbutton doesn't create right proxy menu item
image with GIcon
* gtk/gtktoolbutton.c: Properly create a menu proxy from a GIcon.
Patch by Christian Persch
* tests/testtoolbar.c: Add an example with a GIcon
2009-01-09 Christian Dywan <[email protected]>
Fail in gdk_window_new if _gdk_window_new failed
* gdk/gdkwindow.c (gdk_window_new): Add g_return_val_if_fail
in case _gdk_window_new is NULL. Approved by Tim Janik
2009-01-08 Matthias Clasen <[email protected]>
Bug 566733 – Add GIcon to GtkAction, GtkToolButton
* gtk/gtkaction.c: Add a ::gicon property to GtkAction and set the
icon from it if specified. The stock icon is preferred if a stock id
is given. Based on a patch by A. Walton
2009-01-04 Matthias Clasen <[email protected]>
* gtk/stock-icons/{16,24}/gtk-caps-lock-warning.png: New icons
* gtk/gtkstock.h: Add GTK_STOCK_CAPS_LOCK_WARNING.
* gtk/gtkiconfactory.c (get_default_icons): Register the stock icon.
* gtk/gtkentry.c (show_capslock_feedback): Use the new stock icon.
2009-01-05 Tor Lillqvist <[email protected]>
Bug 566628 - gdk_display_close always asserts on win32
* gdk/win32/gdkdisplay-win32.c
(_gdk_windowing_set_default_display): Allow also a NULL parameter
in the g_assert(). Still don't actually do anything in this
function, though.
2009-01-04 Matthias Clasen <[email protected]>
Bug 566568 – gtk_tree_model_get_value docs typo
* gtk/gtktreemodel.c (gtk_tree_model_get_value): Fix a typo
in the docs, pointed out by Christian Persch.
2009-01-04 Matthias Clasen <[email protected]>
Bug 566391 – gtk_about_dialog_set_url_hook should activate
pre-existing website links
* gtk/gtkaboutdialog.c: Make setting website, website-label and
url hook work independent of their order. Reported by Steven
Sheehy.
2009-01-03 Matthias Clasen <[email protected]>
* gdk/x11/gdkscreen-x11.h:
* gdk/x11/gdkevents-x11.c (fetch_net_wm_check_window): Recheck
_NET_SUPPORTING_WM_CHECK every now and then to avoid getting
stuck on the id of a former wmcheck window that got reused by
another client (see RH bug 471927)
2009-01-03 Matthias Clasen <[email protected]>
* gtk/gtktreesortable.c: Improve the docs
* gtk/gtktreemodelsort.c: Don't assert when using the "unsorted"
sort column id.
2009-01-02 Matthias Clasen <[email protected]>
Bug 565998 – configure script doesn't check for cairo-xlib.pc
* configure.in: Check for cairo-xlib when looking for
gdk dependencies. Requested by Alberto Ruiz
2009-01-02 Matthias Clasen <[email protected]>
Bug 566334 – compile failure for gtk+ on Mac OS X
* gtk/gtkstatusicon.c: Fix the build on OS X.
Reported by Bart Cortooms.
2009-01-02 Matthias Clasen <[email protected]>
Bug 566083 – Icon pixmap hardcoded during DnD
* gtk/gtkwidget.c:
* gtk/gtkentry.c: Add docs about using ::drag-begin for setting
a custom drag icon. Reported by Xan Lopez
2009-01-01 Matthias Clasen <[email protected]>
* configure.in: Bump version
* === Released 2.15.0 ===
2009-01-01 Matthias Clasen <[email protected]>
* gtk/gtkentry.c (gtk_entry_set_icon_sensitive): Fix default
value
* gtk/tests/builder.c: Clean up asserts, make domain
test work with current GtkBuilder behaviour.
* Makefile.decl: Start Xvfb with -ac -noreset to try
and get the gui tests working.
2009-01-01 Matthias Clasen <[email protected]>
* gtk/gtk.symbols: Add a few forgotten symbols
* gtk/gtkprintoperation.c:
* gtk/gtktrayicon-x11.c: Make some functions static
2008-12-31 Matthias Clasen <[email protected]>
* NEWS: Updates
2008-12-31 Matthias Clasen <[email protected]>
* gtk/gtk.symbols:
* gtk/gtkruler.[hc]: Some more
2008-12-31 Matthias Clasen <[email protected]>
* gtk/gtk.symbols:
* gtk/gtkpaned.[hc]:
* gtk/gtkscale.[hc]:
* gtk/gtkscrollbar.[hc]:
* gtk/gtkseparator.[hc]: Keep these all abstract for now.
2008-12-30 Matthias Clasen <[email protected]>
* gtk/gtkentry.c: Rename the icon signals to ::icon-press and
::icon-release to avoid clashes with the existing SexyIconEntry
signals. Also annotate the GdkEvent parameters as static-scope.
* tests/testentryicons.c: Adapt
* demos/gtk-demo/search-entry.c: Adapt
2008-12-30 Matthias Clasen <[email protected]>
Bug 565846 – "va_end(args);" should be added into gtk_tree_store_new
* gtk/gtktreestore.c (gtk_tree_store_new): Add a missing
va_end() call. Pointed out by Jiwon Lee.
2008-12-30 Matthias Clasen <[email protected]>
* gtk/gtkentry.c: Code cleanups; get rid of get_text_area_size,
replace get_icon_allocation by get_icon_allocations, don't
pass allocation to place_windows; other stylistic changes to
the icon-related code.
2008-12-30 Matthias Clasen <[email protected]>
* gtk/gtkentry.c: Avoid size allocation loops.
2008-12-30 Matthias Clasen <[email protected]>
* gtk/gtkentry.c: Fix errors in property definitions and
get_property implementation.
2008-12-30 Matthias Clasen <[email protected]>
* gtk/gtkentry.c: Redo the Caps Lock warning using an icon.
2008-12-30 Matthias Clasen <[email protected]>
Bug 558694 – Paned window splitter keynav broken
* gtk/gtkpaned.c (get_child_panes): Don't add unrealized
widgets.
2008-12-30 Matthias Clasen <[email protected]>
* gtk/gtkstyle.c:
* gtk/gtkmenutooltbutton.c:
* gtk/gtkprintoperationpreview.c: Doc additions
2008-12-29 Matthias Clasen <[email protected]>
* gtk/gtkiconview.c:
* gtk/gtklabel.c:
* gtk/gtkentry.c:
* gtk/gtktextview.c:
* gtk/gtkeditable.c:
* gtk/gtktextbuffer.c: Doc additions.
2008-12-29 Tor Lillqvist <[email protected]>
* gtk/gtk.symbols: Add missing symbols from gtkentry.c.
2008-12-28 Matthias Clasen <[email protected]>
* gtk/gtkwindow.c:
* gtk/gtkstyle.c: Doc additions
2008-12-28 Matthias Clasen <[email protected]>
* gtk/gtk[hv]scrollbar.c: Document gtk_[hv]scrollbar_new.
2008-12-28 Matthias Clasen <[email protected]>
* gtk/gtkwidget.c: Document gtk_mnemonic_activate.
2008-12-28 Matthias Clasen <[email protected]>
* gtk/gtktextlayout.c: Un-doc-commentize non-public api
2008-12-28 Matthias Clasen <[email protected]>
* gtk/gtkprogress.h: Fix a typo
2008-12-28 Matthias Clasen <[email protected]>
* gtk/gtkhsv.c:
* gtk/gtkentry.c: Doc fixes
2008-12-28 Matthias Clasen <[email protected]>
* gtk/gtkwidget.c:
* gtk/gtktextutil.c: Un-doc-commentize non-exported functions
to make gtk-doc happy.
2008-12-28 Matthias Clasen <[email protected]>
* gtk/gtkscale.c:
* gtk/gtkimagemenuitem.c: Doc fixes
2008-12-28 Matthias Clasen <[email protected]>
* gtk/gtkeditable.h: Match parameter names to make gtk-doc happy.
2008-12-28 Matthias Clasen <[email protected]>
* tk/gtkfontsel.c: Merge docs inline.
2008-12-28 Matthias Clasen <[email protected]>
* gtk/gtkprintsettings.c:
* gtk/gtkbindings.c:
* gtk/gtkstyle.c: Doc fixes
2008-12-28 Matthias Clasen <[email protected]>
* gtk/gtkscrolledwindow.c:
* gtk/gtkscale.c: Merge docs inline.
2008-12-28 Ryan Lortie <[email protected]>
small fix for "Paned Window Widgets" example
* docs/tutorial/gtk-tut.sgml: use gtk_container_add rather than
add_with_viewport for putting a GtkTreeView into a ScrolledWindow
Spotted by Benjamin Herrenschmidt
2008-12-28 Matthias Clasen <[email protected]>
* gtk/gtkimmodule.c:
* gtk/gtkseparatortoolitem.c: Doc fixes
* gtk/gtkfontsel.c:
* gtk/gtkeditable.c: Merge docs inline.
2008-12-28 Matthias Clasen <[email protected]>
* gtk/gtkhsv.c:
* gtk/gtkwidget.c:
* gtk/gtkaccelgroup.c: Documentation fixes
* gtk/gtkstatusicon.c:
* gtk/gtkentry.c:
* gtk/gtkeditable.[hc]: Make parameter names match to make gtk-doc
happy.
2008-12-27 Matthias Clasen <[email protected]>
* gtk/gtkentry.c: Expand the docs some more.
2008-12-26 Matthias Clasen <[email protected]>
* gtk/gtkentry.c: Don't emit ::icon-pressed on nonactivatable
icons. Fix up docs to match actual api.
* tests/testentryicons.c: Reshuffle tests a bit. Add a DND test.
2008-12-26 Matthias Clasen <[email protected]>
* gtk/gtkentry.c: Fix interaction between icons and widget sensitivity.
Also fix a few typos.
* tests/testentryicons.c: Add property editors.
* tests/Makefile.am: Glue
2008-12-26 Matthias Clasen <[email protected]>
* gtk/gtkentry.c: Allow builtin icons when loading themed icons,
and don't leak a GtkIconInfo.
2008-12-26 Matthias Clasen <[email protected]>
* gtk/gtkentry.c: Emit ::icon-pressed regardless which button was
pressed. Also make it explicit in the signal signature that the
position parameter is a GtkEntryIconPosition.
2008-12-26 Matthias Clasen <[email protected]>
* gtk/gtkentry.c: Emit property notification for the text-length
property.
2008-12-26 Matthias Clasen <[email protected]>
* demos/gtk-demo/search_entry.c: Add a demo for new entry features.
* demos/gtk-demo/Makefile.am: Glue
2008-12-25 Matthias Clasen <[email protected]>
* gdk/gdkapplaunchcontext.c:
* gdk/gdkkeys.c:
* gdk/x11/gdkdnd-x11.c:
* gdk/x11/gdkkeyx-x11.c:
* gdk/x11/gdktestutils-x11.c: Typo fixes and other small
doc improvements.
2008-12-23 Li Yuan <[email protected]>
* gtk/gtkiconview.c: (gtk_icon_view_accessible_model_row_changed):
Bug #549251. No need to set name if there is no a11y item object.
2008-12-21 Yair Hershkovitz <[email protected]>
Bug 565203: RTL locales: icons are misplaced when horizontal
gtkiconview is contained in a gtkscrolledwindow.
* gtk/gtkiconview.c (gtk_icon_view_layout_single_row):
Fix horizontal icon positions when in RTL locale.
2008-12-19 Matthias Clasen <[email protected]>
* NEWS: Update
2008-12-19 Matthias Clasen <[email protected]>
Bug 564881 – gtkstatusicon.c: 'event' bug again
* gtk/gtkstatusicon.c (button_callback): Fix the build.
Patch by Christian Dywan.
2008-12-19 Cody Russell <[email protected]>
Bug 85292 – add an icon to gtkentry
* gtk/gtkmarshalers.list: Add VOID:INT,BOXED
* tests/testentryicons.c: Initial icon entry test
* tests/Makefile.am: Add testentryicons
* gtk/gtkentry.[ch]: Add API for setting primary/secondary icons
and other features related to them.
2008-12-19 Marek Kasik <[email protected]>
Bug 339318 - Allow page rendering to (optionally) happen in a thread
* gtk/gtk.symbols: API change
* doc/reference/gtk/gtk-sections.txt: API change
* gtk/gtkprintoperation-private.h
* gtk/gtkprintoperation.h
* gtk/gtkprintoperation.c: Adds 2 new functions
gtk_print_operation_set_defer_drawing()
- Sets up the GtkPrintOperation to wait for calling of
gtk_print_operation_draw_page_finish() from application. It can
be used for drawing page in another thread.
This function must be called in the callback of "draw-page"
signal.
gtk_print_operation_draw_page_finish()
- Signalize that drawing of particular page is complete.
It is called after completion of page drawing (e.g. drawing
in another thread).
If gtk_print_operation_set_defer_drawing() was called before,
then this function has to be called by application. In another
case it is called by the library itself.
2008-12-15 Matthias Clasen <[email protected]>
* gtk/gtkprintunixdialog.c: Don't export emit_ok_response
2008-12-15 Tomas Bzatek <[email protected]>
* gtk/gtkfilechooserdefault.c: (list_row_activated):
* gtk/gtkfilesystem.c: (_gtk_file_info_consider_as_directory):
Mask G_FILE_TYPE_SHORTCUT as a directory (#561494)
2008-12-13 Matthias Clasen <[email protected]>
* gtk/gtkfilechooserdefault.c (update_current_folder_get_info_cb):
Mount the enclosing volume if the folder we're switching to is not
mounted. Patch by Tomas Bzatek, based on work by Carlos Garnacho
2008-12-13 Matthias Clasen <[email protected]>
Bug 561494 – FileChooser network browsing and authentication support
* gtk/gtkfilesystem.[hc] (_gtk_file_info_consider_as_directory):
Privately export this method. It classifies directories and mountables
the same.
* gtk/gtkfilesystem.c (enclosing_volume_mount_cb): Silently drop
G_IO_ERROR_ALREADY_MOUNTED error for gvfs backends without visible
mounts.
* gtk/gtkfilesystemmodel.c:
* gtk/gtkfilechooserbutton.c:
* gtk/gtkfilechooserentry.c:
* gtk/gtkfilechooserdefault.c: Use the new function instead of
direct checks for G_FILE_TYPE_DIRECTORY throughout.
2008-12-13 Matthias Clasen <[email protected]>
Bug 562579 – Remove error dialog when directory does not exist
* gtk/gtkfilechooserdefault.c (update_current_folder_get_info_cb):
Don't show an error dialog when changing to a non-existing folder,
since this is ususally just an annoyance.
2008-12-13 Matthias Clasen <[email protected]>
Bug 556233 – local-only causes G_IS_FILE warning
* gtk/gktfilechooserdefault.c (set_local_only): Avoid a warning
in tests. Patch by Christian Dywan
2008-12-13 Matthias Clasen <[email protected]>
Bug 563158 – CellRendererProgress pulsing and progressing rows can
not be used together
* gtk/gtkcellrendererprogress.c (gtk_cell_renderer_progress_set_pulse):
Don't try to keep state in a cell renderer between two paint
calls. It doesn't work. Patch by Kristian Mueller
2008-12-13 Matthias Clasen <[email protected]>
Bug 555560 – gtk_combo_box_set_active fails with no model
* gtk/gtkcombobox.c: Allow out-of-order setting of model and active.
Patch by Christian Dywan
2008-12-13 Matthias Clasen <[email protected]>
Bug 558306 – Cannot build gdk (gtk+ 2.14.4) on Solaris 8
* gdk/x11/gdktestutils-x11.c (gdk_test_simulate_button):
Remove a C99ism. Pointed out by Eric Lamarque
2008-12-13 Matthias Clasen <[email protected]>
Bug 549251 – GTK icon view accessible issue.
* gtk/gtkiconview.c (gtk_icon_view_accessible_model_row_changed):
Handle separate append/set for rows. Patch by Li Yuan
2008-12-13 Matthias Clasen <[email protected]>
Bug 556839 – Crash when opening a link
* gtk/gtkstatusicon.c (gtk_status_icon_finalize): Destroy the
image too. Patch by Carlos Garcia Campos
2008-12-13 Matthias Clasen <[email protected]>
Bug 563751 – xatom cache is prefilled too late
* gdk/x11/gdkdisplay-x11.c (gdk_display_open): Initialize the
XAtom cache earlier. Patch by Christian Persch
2008-12-13 Matthias Clasen <[email protected]>
Bug 564212 – gtk_icon_view_accessible_model_rows_reordered explain
new_order in the wrong way
* gtk/gtkiconview.c (gtk_icon_view_accessible_model_rows_reordered):
Use the new order correctly. Patch by Li Yuan
2008-12-13 Matthias Clasen <[email protected]>
Bug 563835 – Typo in gtk_widget_has_screen() docs
* gdk/directfb/gdkwindow-directfb.c:
* gdk/gdkwindow.c:
* gdk/x11/gdkwindow-x11.c:
* gtk/gtkmenushell.c:
* gtk/gtkwidget.c:
* gtk/tests/builder.c:
* tests/testdnd.c: s/heirarchy/hierarchy/ in docs and comments.
Pointed out by Wouter Bolsterlee
2008-12-12 Matthias Clasen <[email protected]>
Bug 564066 – Crash in gtk_rc_parse_default_files
* gtk/gtkrc.c (gtk_rc_parse_default_files): Handle being called
early. Bug report by Andrés G. Aragoneses
2008-12-12 Matthias Clasen <[email protected]>
* gtk/gtkmountoperation.c: Set an empty title on password dialogs.
Pointed out by Máirín Duffy.
2008-12-11 Sven Herzberg <[email protected]>
Document the "set-scroll-adjustments" signal
Reviewed by Kristian Rietveld.
* gtk/gtkiconview.c,
* gtk/gtklayout.c,
* gtk/gtktextview.c,
* gtk/gtktreeview.c,
* gtk/gtkviewport.c: added proper documentation for the signal
2008-12-11 Daniel Elstner <[email protected]>
Bug 563994 – Input method module interface not documented
* gtk/gtkimcontext.h: Add public/private markers.
* gtk/gtkimcontext.c: Add section documentation which explains how
to add a new input method module to GTK+. Document the signals and
virtual functions of GtkIMContextClass.
* gtk/gtkimmodule.c: Document struct GtkIMContextInfo.
* docs/reference/gtk/gtk-sections.txt: Add GtkIMContextClass and
GtkIMContextInfo to section GtkIMContext.
* docs/reference/gtk/Makefile.am (IGNORE_HFILES): Remove
gtkimmodule.h from the list in order to pick up GtkIMContextInfo.
* docs/reference/gtk/tmpl/gtkimcontext.sgml: Remove file from
repository since all the hand-edited content has been migrated to
source file comments.
2008-12-10 Matthias Clasen <[email protected]>
Bug 563991 – gtk_file_chooser_button_new_with_backend is deprecated
-- but what should be used instead?
* gtk/gtkfilechooserbutton.c: Enhanced deprecation annotation.
2008-12-10 Daniel Elstner <[email protected]>
Maintenance of Multipress input method by Openismus GmbH:
* modules/input/gtkimcontextmultipress.[ch]: Clean up the code
a bit to follow the GTK+ coding style more closely. Fix the code
to emit "preedit-start" and "preedit-end", too, rather than only
"preedit-changed".
(GTK_IM_CONTEXT_MULTIPRESS*): Rename incorrectly spelled macros
gtk_im_context_multipress*. Shouldn't break API or ABI as it's
only used internally.
* modules/input/immultipress.c: More cleanup,
* modules/input/README.multipress: ditto.
2008-12-09 Michael Natterer <[email protected]>
* gdk/gdk.symbols: add missing #ifndef GDK_DISABLE_DEPRECATED.
2008-12-09 Michael Natterer <[email protected]>
* gtk/gtkcontainer.c (struct PackingPropertiesData): add missing
semicolon.
* gtk/gtkcontainer.c (attributes_text_element): "value" is a
gchar*, not const gchar*.
2008-12-07 Matthias Clasen <[email protected]>
Bug 546378 – GtkAssistant page title is not translatable
* gtk/gtkbuilderparser.c: Make gtk_builder_get_translation_domain()
useful for subparsers.
* gtk/gtkcontainer.c: Make the child property parser support
translatable child properties. Patch by Antti Kaijanmäki
2008-12-07 Matthias Clasen <[email protected]>
Bug 554274 – Add default hook for GtkLinkButton
* gtk/gtklinkbutton.c: Call gtk_show_uri() if no uri hook has
been set. Patch by Emmanuele Bassi
2008-12-07 Matthias Clasen <[email protected]>
Bug 559325 – documentation for gdk_display_get_window_at_pointer()
: is wrong
* gdk/gdkdisplay.c (gdk_display_get_window_at_pointer): Correct
the documentation. Patch by Paul Davis
2008-12-07 Matthias Clasen <[email protected]>
Bug 563285 – test print backend does not compile
* modules/printbackends/test/gtkprintbackendtest.c: Clean up
includes.
2008-12-07 Behdad Esfahbod <[email protected]>
Bug 563547 – Update gdkx11 atom precache table
* gdk/x11/gdkdisplay-x11.c: Add more atoms to precache.
2008-12-05 Michael Natterer <[email protected]>
Bug 546285 – Allow GtkEntry to draw progress
* gtk/gtkentry.[ch]: add new API similar to GtkProgressBar which
allows to set the entry's progress_fraction, its progress_pulse_step
and to let the entry's progress pulse.
* gtk/gtk.symbols: updated.
* tests/testgtk.c: add progress demo code to the "Entry" window.
2008-12-04 Johan Dahlin <[email protected]>
* gtk/gtkstatusicon.c:
Add missing space in gtk-doc deprecated syntax
2008-12-03 Simos Xenitellis <[email protected]>
Bug 557420 – Some compose sequences don't work anymore (or only in
a specific order)
* gtk/gtkimcontextsimple.c: Update of table size, keysym boundary,
to match the gtkimcontextsimpleseqs.h table.
* gtk/gtkimcontextsimpleseqs.h: Update with older gtk+ compose
sequences that went missing due to table update with upstream.
* gtk/compose-parse.py: Updated to include gtk-compose-lookaside.txt
* gtk/gtk-compose-lookaside.txt: Older gtk+ compose sequences that
are not found in the X.Org Compose file.
2008-12-03 Sven Herzberg <[email protected]>
Bug 562998 – GtkFontButton documentation improvements
* gtk/gtkfontbutton.c: mention the way the font string should be used.
Patch by Sven Herzberg and Nelson Benitez
2008-12-03 Marek Kasik <[email protected]>
Bug 559914 – eog doesn't apply paper setup.
* gtk/gtkpapersize.c: Call the gtk_paper_size_new_from_ppd() with width
and height in points.
2008-12-02 Carlos Garcia Campos <[email protected]>
Bug 562878 – password save incorrectly set in gtkmountoperation
* gtk/gtkmountoperation.c (remember_button_toggled),
(gtk_mount_operation_ask_password): Remember the password save
flags only when the radio button becomes active. Set also the
default state of the radio buttons depending on the current value
of password save flags.
2008-12-01 Matthias Clasen <[email protected]>
Bug 555334 – connected server feature
* gtk/gtkfilesystem.c (get_volumes_list): Filter out shadow mounts.
Patch by David Zeuthen.
2008-12-01 Matthias Clasen <[email protected]>
* gtk/gtkentry.c: Revert an accidental change that sneaked
in with the last commit.
2008-12-01 Paul Bolle <[email protected]>
Bug 562817 – GtkDialog: typo
* gtk/gtkdialog.c: Fix typo
2008-11-29 Matthias Clasen <[email protected]>
Bug 554453 – "typeahead find" widget of GtkTreeView appears on
wrong monitor in a multi-head environment
* gtk/gtktreeview.c (gtk_tree_view_ensure_interactive_directory):
Make sure the typeahead window follows screen changes of the
treeview. Noticed by Rainer Stransky
2008-11-30 Christian Dywan <[email protected]>
Bug 559622 – GdkDevice test segfaults
* gdk/x11/gdkdisplay-x11.c (gdk_display_x11_dispose):
* gdk/x11/gdkinput.c (gdk_device_class_init), (gdk_device_dispose):
Free and reset device in dispose. Patch by Michael Natterer and myself.
2008-11-30 Christian Dywan <[email protected]>
Bug 554076 – eventually release g_new-ed supported_atoms
* gdk/x11/gdkevents-x11.c (cleanup_atoms),
(gdk_x11_screen_supports_net_wm_hint): Set cleanup callback.
Patch by Caolan McNamara.
2008-11-30 Christian Dywan <[email protected]>
Bug 539263 – Deprecate gdk_window_get_toplevels
* gdk/gdkwindow.c:
* gdk/gdkwindow.h: Deprecate gdk_window_get_toplevels
2008-11-29 Federico Mena Quintero <[email protected]>
* gtk/gtktreeview.c (gtk_tree_view_bin_expose): If tree lines are
enabled, flip them around for the right-to-left case. Fixes
https://bugzilla.novell.com/show_bug.cgi?id=447004. Patch by
Ricardo Cruz <[email protected]>
2008-11-29 Christian Persch <[email protected]>
* gtk/gtkselection.c: Typo fix.
2008-11-29 Matthias Clasen <[email protected]>
* gtk/gtkselection.c:
* gtk/gtkentry.c:
* gtk/gtkdnd.c:
* gtk/gtkcolorsel.c:
* gtk/gtkbindings.c: Improve deprecation annotations.
2008-11-26 Christian Dywan <[email protected]>
Bug 561504 – testgtk should load rc file from sub folder
* tests/testgtk.c (main):
Make testgtk look in subfolder and warn if not found
2008-11-25 Johan Dahlin <[email protected]>
Bug 559947 – Unchecked dependency on python>=2.4
* gtk/gtk-builder-convert:
Avoid using sorted() which is only present in python 2.
2008-11-24 Tristan Van Berkom <[email protected]>
* gtk/gtkalignment.c: Bug 561539 - Fix warnings when size allocations
fall short of border width and padding.
2008-11-22 Paul Bolle <[email protected]>
Bug 561335 - Fix typos in GtkToolItem documentation
* gtk/gtktoolitem.c: Fix typos in GtkToolItem documentation
2008-11-21 Matthias Clasen <[email protected]>
* configure.in: Bump gtk-doc dependency to 1.11 for
nicer index-generation.
2008-11-21 Matthias Clasen <[email protected]>
* gtk/gtkmountoperation.[hc]: Declare structs in a way that
gtk-doc understands.
2008-11-17 Christian Dywan <[email protected]>
Bug 377699 – realizing gtk.Progress() causes SEGV
* gtk/gtkprogress.c: Define GtkProgress as an abstract type
2008-11-13 Christian Dywan <[email protected]>
Bug 560602 – Wrong GtkMenuItem default value (test fails)
* gtk/gtkmenuitem.c (gtk_menu_item_class_init):
Correct default "label" value to ""
2008-11-12 Christian Dywan <[email protected]>
Bug 560139 – GtkEntry doesn't paint with the right state
* gtk/gtkentry.c (gtk_entry_class_init), (gtk_entry_draw_frame),
(gtk_entry_expose): Reflect the right state if state-hint is set
2008-11-12 Christian Dywan <[email protected]>
Bug 559619 – invisible-char default cannot be tested
* gtk/tests/defaultvalue.c (test_type):
Skip invisible-char when testing
2008-11-12 Richard Hult <[email protected]>
* gtk/gtkdnd-quartz.c: (gtk_drag_set_icon_pixmap): Implement,
patch from Paul Davis.
2008-11-12 Christian Dywan <[email protected]>
Bug 525550 – GTK+ 2.13.0 GtkCurve test fails
* gtk/tests/object.c (list_ignore_properties),
(object_test_property), (main): Ignore GtkCurve when testing
2008-11-12 Richard Hult <[email protected]>
Bug 550942 – [patch] Rework of gdkeventloop-quartz.c
* gdk/gdk.c:
* gdk/gdkinternals.h: Add eventloop debug facility.
* gdk/quartz/gdkeventloop-quartz.c: Big rework of the quartz
mainloop integration, patch from Owen Taylor. See bug #550942 for
the details.
2008-11-12 Richard Hult <[email protected]>
Bug 558586 – handling of keyboard under darwin (quartz)
* gdk/quartz/gdkkeys-quartz.c: Follow up on this bug, only use the
new API when building on 64-bit, since there are still old non-xml
layouts used out there we don't want to break them. (For 64-bit
those layouts doesn't work so we don't have a choice there.)
2008-11-11 Matthias Clasen <[email protected]>
* gtk/gtkspinbutton.c: Chain up in enter and leave notify handlers.
2008-11-11 Michael Natterer <[email protected]>
Bug 553765 – Add orientation API to GtkRange
* gtk/gtkrange.[ch]: implement the GtkOrientable interface. Add
evil code that makes sure that the stepper_detail and slider_detail
set in GtkRangeClass continue to work with the hacked subclasses
below.
* gtk/gtkscale.[ch]: swallow all code from GtkHScale and GtkVScale
and add gtk_scale_new() and gtk_scale_new_with_range() which take
a GtkOrientation argument. Set slider_detail to "Xscale" so above
evil code works.
* gtk/gtkscrollbar.[ch]: add gtk_scrollbar_new() which takes a
GtkOrientation argument. Set stepper_detail to "Xscrollbar" so
above evil code works.
* gtk/gtkhscale.c
* gtk/gtkvscale.c
* gtk/gtkhscrollbar.c
* gtk/gtkvscrollbar.c: remove all code except the constructor and
call gtk_orientable_set_orientation() in init().
* gtk/gtk.symbols: changed accordingly.
2008-11-11 Michael Natterer <[email protected]>
* gtk/gtktoolbar.h: move deprecated functions together, move
setters and getters together, some indentation cleanup.
2008-11-11 Michael Natterer <[email protected]>
* gtk/gtktoolbar.[ch]: implement the GtkOrientable interface
and deprecate gtk_toolbar_get,set_orientation().
* gtk/gtk.symbols: changed accordingly.
2008-11-10 Marek Kasik <[email protected]>