]> Pileus Git - ~andy/gtk/blob - ChangeLog
Use EXEEXT.
[~andy/gtk] / ChangeLog
1 2006-09-23  Tor Lillqvist  <tml@novell.com>
2
3         * gtk/Makefile.am: Use EXEEXT.
4
5 2006-09-22  Michael Natterer  <mitch@imendio.com>
6
7         * gtk/gtkstyle.c (gtk_style_real_copy): also copy icon factories
8         and color hashes. Fixes bug #357132.
9
10 2006-09-22  Matthias Clasen  <mclasen@redhat.com>
11
12         Make remote bookmarks work better (#354887)
13         
14         * gtk/gtkfilechooserdefault.c (shortcuts_reload_icons): 
15         (shortcuts_insert_path): 
16         * gtk/gtkfilechooserbutton.c (change_icon_theme): 
17         (model_add_bookmarks): 
18         (model_update_current_folder): 
19         (update_label_and_image): 
20         If the bookmark points to a remote file, don't call get_info(), 
21         since that may a) take a long time and b) pop up an auth dialog.
22         Instead, just use a folder icon and create a display name
23         from the uri.
24
25         * gtk/gtkfilechooserdefault.c (_gtk_file_chooser_label_for_uri): 
26         New function to create a suitable display name for a remote
27         uri. This should really be done in GtkFileSystem.
28         
29 2006-09-21  Michael Natterer  <mitch@imendio.com>
30
31        Implement lots of value setters for GdkGC, based on a heavily
32        modified patch from Thomas Broyer (bug #328853):
33
34         * gdk/quartz/gdkcolor-quartz.c: removed functions which set colors
35         on the CGContext. Instead, added gdk_quartz_get_rgba_from_pixel()
36         which simply returns RGBA values from a GdkColor's pixel value.
37         See gdk_quartz_update_context_from_gc() below.
38
39         * gdk/quartz/gdkprivate-quartz.h (struct GdkGCQuartz): added lots
40         of members for the newly suppored GC values. Added enum
41         GdkQuartzContextValuesMask which is used for setting up the
42         CGContext for filling and/or stroking.
43
44         * gdk/quartz/gdkgc-quartz.c (gdk_quartz_gc_get_values)
45         (gdk_quartz_gc_set_values)
46         (_gdk_windowing_gc_copy): support a lot more GC values.
47
48         (gdk_quartz_update_context_from_gc): added
49         GdkQuartzContextValuesMask parameter and set filling/stroking
50         parameters accordingly. This function also gained full control
51         over the FG and BG colors (they can't be set separately any more).
52
53         The stipple mask part of the patch doesn't work but seems to take
54         the right approach and doesn't make things worse, so I applied it.
55
56         Did *not* apply the clipping part of the patch since I don't
57         understand it (I don't understand the version in CVS either, but
58         it at least works :-)
59
60         * gdk/quartz/gdkdrawable-quartz.c: pass the right masks to
61         gdk_quartz_update_context_from_gc() and removed separate color
62         setting calls. Some minor fixes.
63
64         * gdk/quartz/gdkwindow-quartz.c
65         (gdk_window_impl_quartz_begin_paint_region): set the CGContext's
66         fill color manually. We don't have/need a GC here.
67
68 2006-09-21  Michael Natterer  <mitch@imendio.com>
69
70         * gdk/quartz/gdkwindow-quartz.c
71         (gdk_window_impl_quartz_begin_paint_region): fix cast: it's
72         drawable_impl->wrapper that is the GdkWindow, not the
73         drawable_impl itself.
74
75 2006-09-20  Behnam Esfahbod <behnam@zwnj.org>
76
77         * gdk/x11/gdkkeys-x11.c:
78           (get_direction): just check the first shift-level of keyboard
79         layout for RTL and LTR keysyms() (compliment to #116626)
80
81 Wed Sep 20 16:59:38 2006  Tim Janik  <timj@imendio.com>
82
83         * gtk/gtkviewport.c: always update the bin_window position and size
84         in size_allocate, even if we don't have a visible child. this fixes
85         expose artefacts as described in #313508.
86
87         * gtk/gtkscrolledwindow.c: make hiding of automatic scrollbars when we
88         have no visible child explicit.
89
90 2006-09-19  Ryan Lortie  <desrt@desrt.ca>
91
92         * docs/reference/gdk/gdk-sections.txt:
93         * gdk/gdk.symbols:
94         * gdk/gdkpango.h:
95         * gdk/gdkpango.c: Bug 355343.  Add a GdkPangoAttrEmbossColor.
96           (gdk_pango_layout_get_clip_region): Remove an unused variable.
97           (gdk_pango_attr_embossed_new): Fix documentation.
98
99 Tue Sep 19 17:00:04 2006  Tim Janik  <timj@imendio.com>
100
101         * gtk/gtkarrow.c: added GtkArrow::arrow-scaling style property to 
102         control the arrow/border ratio within the allocation.
103
104         * tests/testgtk.c: added a GtkArrow to handle box test.
105
106         * tests/testgtkrc: test ::arrow-scaling property.
107
108 2006-09-19  Matthias Clasen  <mclasen@redhat.com>
109
110         * gtk/gtkfilechooserdefault.c (update_current_folder_get_info_cb):
111         Display an error when we come to the root.  
112
113 2006-09-16  Matthias Clasen  <mclasen@redhat.com>
114
115         * gtk/gtkfilechooserbutton.c: Use bookmark labels in 
116         the combobox. 
117
118         * gtk/gtkfilechooserbutton.c: Don't add remote volumes and 
119         bookmarks to the model in local-only mode, to avoid 
120         authentication dialogs pop up for invisible bookmarks, and
121         to fix issues with separators not being hidden when
122         they should.  (#354887, Dennis Cranston)
123
124 2006-09-16  Matthias Clasen  <mclasen@redhat.com>
125
126         * gtk/gtkcombobox.c (gtk_combo_box_finalize): Unref the
127         treeview use in list mode.  (#355732, Richard Hult)
128
129         * gtk/gtktreeview.c (gtk_tree_view_set_grid_lines): Send
130         change notification for the right property.  (#355308,
131         Torsten Schoenfeld)
132
133 2006-09-15  Michael Natterer  <mitch@imendio.com>
134
135         * gtk/gtktreeview.c (gtk_tree_view_key_press): refactored column
136         header navigation/resizing/reordering to be more readable and lose
137         one level of nesting.
138
139 2006-09-15  Kristian Rietveld  <kris@imendio.com>
140
141         * gtk/gtktreeview.c (gtk_tree_view_key_press): actually directly
142         return after handling column button focus; we disable wrap around
143         with this (which actually happened via a really weird code path).
144         (Michael Natterer)
145
146 2006-09-15  Kristian Rietveld  <kris@imendio.com>
147
148         * gtk/gtktreeview.c (gtk_tree_view_key_press): make column resizing
149         code RTL aware, also break from the loops after we have seen the
150         focussed column button (Michael Natterer).
151
152 Thu Sep 14 12:28:51 2006  Tim Janik  <timj@imendio.com>
153
154         * tests/testrichtext.c (main): intialize random number generator state
155         upon program start, to enable truely random testing.
156
157 2006-09-13 Michael Emmel <mike.emmel@gmail.com>
158
159         * gdk/directfb/gdkcolor-directfb.c small clean ups include order
160         * gdk/directfb/gdkwindow-directfb.c fixed beep compile error
161         * gdk/directfb/Makefile.am removed GDK_PIXBUF_DISABLE_DEPRECATED
162                 GDK_DISABLE_DEPRECATED to allow compile per Behdad
163         * gdk/quartz/Makefile.am same change as directfb Makefile
164         * gtk/Makefile.am fixed typo that cause socket stubs not to compile
165
166 2006-09-13 Matthias Clasen <mclasen@redhat.com>
167
168         * gtk/gtkcolorsel.c: Use a GtkWindow instead of a GtkInvisible
169         for the grab widget, to make the color picker work with window
170         groups.  
171
172 2006-09-12 Hong Jen Yee <pcman.tw@gmail.com>
173
174         signed off by: Dom Lachowicz
175         
176         * modules/engines/ms-windows/msw_style.c: Bug 340201. This contains
177         a large number of improvements to the Microsoft Windows theme engine
178         which are fully described in the bug report.
179         
180 Mon Sep 11 14:22:39 2006  Tim Janik  <timj@imendio.com>
181
182         * tests/testgtk.c: fixed compiler warnings.
183
184 2006-09-10  Matthias Clasen  <mclasen@redhat.com>
185
186         * gtk/gtkfilechooserbutton.c (model_add_special): Request
187         the display name too, otherwise "Desktop" does not appear
188         in the file chooser button. 
189
190 2006-09-10  Tor Lillqvist  <tml@novell.com>
191
192         * gdk/win32/gdkprivate-win32.h
193         * gdk/win32/gdkmain-win32.c
194         * gdk/win32/gdkwindow-win32.c: Define WINVER and _WIN32_WINNT as
195         0x0500 in gdkprivate-win32.h instead of doing it in two source
196         files. (#355212, Mike Edenfield)
197
198         * gdk/win32/gdkwindow-win32.c: We can also remove the ersatz
199         GetAncestor() for the _MSC_VER && WINVER < 0x0500 case, I hope.
200
201 2006-09-10  Matthias Clasen  <mclasen@redhat.com>
202
203         * Commit a patch by Behdad to fix typos, omissions and other
204         errors in the symbol aliasing, and add checks for local PLT
205         entries.  (#354687, Behdad Esfahbod)
206
207         * gtk/gtktreeview.c (gtk_tree_view_search_scroll_event): Renew
208         the flush timeout.  (#354043, Nelson Benitez)
209         
210         * gtk/gtkfilechoosersettings.c (set_unexpected_element_end_error): 
211         Improve wording. String change!  (#355126, David Lodge)
212
213         * gtk/updateiconcache.c: Improve wording. String change!  (#355128,
214         David Lodge)
215
216         * gtk/paper_names_offsets.c: Fix a typo. String change!  (#355134,
217         David Lodge)
218
219 2006-09-09  Matthias Clasen <mclasen@redhat.com>
220
221         * gdk/x11/gdkfonts-x11.c: Fix small theoretical memory leaks.
222         (#353916, Chris Wilson)
223
224         * gtk/gtksettings.c (_gtk_settings_reset_rc_values):
225         Don't leak the to_reset list.  (#353914, Chris Wilson)
226
227         * gtk/gtkwidget.c: Add docs for the parent-set signal.
228         (#353772, Mariano Suárez-Alvarez)
229
230 2006-09-08  Matthias Clasen <mclasen@redhat.com>
231
232         * gtk/gtktextbuffer.c (remove_all_selection_clipboards):
233         Don't clear clipboards here, since we are called from finalize
234         and can't emit signals.
235
236         * configure.in: Set version to 2.11.0
237
238 2006-09-06  Richard Hult  <richard@imendio.com>
239
240         * gdk/quartz/gdkkeys-quartz.c: (maybe_update_keymap): Special-case 
241         shift-tab and map it to GDK_ISO_Left_Tab, fixes bug #350806.
242
243 2006-09-04  Kristian Rietveld  <kris@imendio.com>
244
245         * gtk/gtkfilechooserdefault.c (update_current_folder_get_info_cb):
246         if setting the given folder failed, try setting the parent folder
247         until we succeed; display an error box at the end.
248
249 2006-09-04  Kristian Rietveld  <kris@imendio.com>
250
251         * gtk/gtkpathbar.c (gtk_path_bar_dispose): don't cancel the
252         operations spawned by buttons here,
253         (set_button_image_get_info_cb): bail out if button is NULL, but
254         do free button_data,
255         (button_data_free): only free the data if non NULL (since this
256         function can be called multiple times for the same data), cancel
257         handle if pending but don't free button_data in this case (will
258         happen in the callback).
259
260 2006-09-04  Michael Natterer  <mitch@imendio.com>
261
262         * gtk/gtkrc.c (rc_parse_token_or_compound)
263         (gtk_rc_parse_assignment): serialize floating point values using
264         locale-independent functions. (#346751, Frederic Crozat)
265
266 2006-09-04  Tor Lillqvist  <tml@novell.com>
267
268         * gdk/win32/gdkevents-win32.c
269         * gdk/win32/gdkwindow-win32.c: Use wide-char API for message and
270         window handling (PeekMessage, PostMessage, SendMessage,
271         DispatchMessage, DefWindowProc, RegisterClassEx,
272         CreateWindowEx). (#321597)
273
274 2006-09-03  Kristian Rietveld  <kris@imendio.com>
275
276         * gtk/gtkfilechooserdefault.c (save_entry_get_info_cb),
277         (file_exists_get_info_cb), (gtk_file_chooser_default_should_respond):
278         change file_exists_and_is_not_folder checks to get the file info
279         for the path directly instead of querying the current file folder
280         of the save entry.
281
282         * gtk/gtkfilechooserprivate.h (struct _GtkFileChooserDefault): add
283         new field.
284
285         * tests/autotestfilechooser.c (wait_for_idle_idle), (wait_for_idle),
286         (test_reload_sequence), (test_button_folder_states_for_action): wait
287         for idle after setting a folder to ensure the async operations to load
288         the folder are finished,
289         (test_confirm_overwrite), (test_confirm_overwrite_for_path):
290         factor out test_confirm_overwrite code so we can add tests for more
291         paths more easily.
292
293 2006-09-03  Richard Hult  <richard@imendio.com>
294
295         * gdk/quartz/GdkQuartzView.c (drawRect): Don't do anything if
296         exposure isn't in the event mask, plug a leak, and check that the
297         window isn't destroyed.
298         (isOpaque): Check that the window isn't destroyed, fixes bug 
299         #353028.
300
301 2006-09-03  Matthias Clasen  <mclasen@redhat.com>
302
303         * gtk/gtkwidget.c (gtk_widget_class_init): Fix a typo.  
304         (#354035, Mariano Suárez-Alvarez)
305
306         * gtk/gtkmain.c (post_parse_hook): 
307         * gdk/gdk.c (gdk_init): Handle display_name being NULL.
308         (#354004, Chris Wilson)
309
310 2006-09-03  Tor Lillqvist  <tml@novell.com>
311
312         * gdk/win32/gdkwindow-win32.c (gdk_window_beep): No
313         GDK_WINDOW_DISPLAY in the Win32 backend.
314
315         * gtk/gtkfilesystemwin32.c: Copy what Kris did to
316         gtkfilesystemunix.c
317
318 2006-09-02  Kristian Rietveld  <kris@imendio.com>
319
320         First part of file chooser fixes.
321
322         * gtk/gtkfilechooserbutton.c (model_add_special): also set the
323         handle in the model for the desktopdir case.
324
325         * gtk/gtkfilechooserdefault.c (shortcuts_add_current_folder): free
326         volume in case we retrieved it but don't pass it on to insert_path,
327         (shortcuts_model_create): change the column type for the handles
328         to pointer instead of GObject so our handle ref counting is not
329         disturbed,
330         (show_and_select_paths_finished_loading): don't forget to unref
331         the dialog.
332
333         * gtk/gtkfilesystemunix.c (gtk_file_system_unix_class_init),
334         (gtk_file_system_unix_init), (gtk_file_system_unix_dispose):
335         remove pending execute_callbacks_idle during dispose, also
336         execute all callbacks waiting to be run in the next idle,
337         (queue_*callback), (execute_callbacks_idle): refactor to maintain
338         a list of callbacks to call per file system instead of globally,
339         guard the file system during callback invocation,
340         (gtk_file_system_unix_get_folder): only add load folder idle if
341         none has been added yet.
342
343 2006-09-01  Matthias Clasen  <mclasen@redhat.com>
344
345         * gtk/gtkentry.c: Don't unnecessarily reset the im context
346         when deleting the selection.  (#353803, Alex Larsson)
347
348 2006-09-01  Abel Cheung  <abel@oaka.org>
349
350         * configure.in: Added 'ang' 'dz' to ALL_LINGUAS.
351
352 2006-08-31  Matthias Clasen  <mclasen@redhat.com>
353
354         Stop cursor blinking after a configurable timeout.
355         (#353670, #352442, Arjan van de Ven, Manu Cornet)
356         
357         * gtk/gtksettings.c (gtk_settings_class_init): Add a 
358         gtk-cursor-blink-timeout setting, which specifies the number
359         of seconds that the cursor should blink after a user interaction.
360         The default value is G_MAXINT to preserve the current behaviour.
361
362         * gtk/gtkentry.c (blink_cb): Stop blinking after blink-timeout
363         seconds.
364
365         * gtk/gtkentry.c (gtk_entry_completion_key_press) 
366         (gtk_entry_button_press, gtk_entry_focus_in): Reset the
367         blink timer.
368
369         * gtk/gtktextview.c (blink_cb): Stop blinking after blink-timeout
370         seconds. 
371
372         * gtk/gtktextview.c (gtk_text_view_key_press_event) 
373         (gtk_text_view_button_press_event, gtk_text_view_focus_in_event): 
374         Reset the blink timer.
375         
376 2006-08-31  Matthias Clasen  <mclasen@redhat.com>
377
378         * gtk/gtkprintoperation-unix.c (get_print_dialog): Don't specify
379         explicit format capabilities.  (#346505, Christian Persch)
380
381         * modules/printbackends/cups/gtkprintbackendcups.c (cups_request_printer_list_cb): Send printer-list-done on error. 
382
383 2006-08-31  Michael Natterer  <mitch@imendio.com>
384
385         * gdk/x11/gdkwindow-x11.c (gdk_window_beep): Fix build.
386
387 2006-08-30  Richard Hult  <richard@imendio.com>
388
389         * gdk/quartz/gdkwindow-quartz.c (gdk_window_beep): Fix build.
390
391 2006-08-30  Matthias Clasen  <mclasen@redhat.com>
392
393         * gdk/x11/gdkwindow-x11.c (gdk_window_beep): Only use XKB
394         for beeping if we are using XKB.  
395
396 2006-08-29  Matthias Clasen  <mclasen@redhat.com>
397
398         * gdk/gdkwindow.h: 
399         * gdk/gdk.symbols: 
400         * gdk/directfb/gdkwindow-directfb.c (gdk_window_beep): 
401         * gdk/win32/gdkwindow-win32.c (gdk_window_beep): 
402         * gdk/quartz/gdkwindow-quartz.c (gdk_window_beep): 
403         * gdk/x11/gdkwindow-x11.c (gdk_window_beep): Add a function
404         to beep on a window. For X11, implement this with
405         XkbBell.  (#353455, Mariano Suárez-Alvarez)
406         
407 2006-08-29  Tor Lillqvist  <tml@novell.com>
408
409         Remove support for Windows 9x/ME. GTK+ hasn't worked on Win9x
410         since 2.6 or 2.8. It's pointless to keep the Win9x code in here as
411         it isn't being maintained anyway. If somebody is interested, it
412         can always be found in older GTK+ versions, and in CVS.
413
414         * configure.in
415         * acconfig.h
416         * gdk/Makefile.am
417         * gdk/win32/Makefile.am
418         * gdk/win32/libie55uid.la
419         * gdk/win32/gdkevents-win32.c: Remove the --with-ie55 configure
420         switch and associated stuff. Active IMM and the <dimm.h> header
421         was used for IM support on NT4 and Win9x. Win2k and later have IM
422         support built-in.
423
424         * gdk/win32/gdkcursor-win32.c
425         * gdk/win32/gdkdnd-win32.c
426         * gdk/win32/gdkdrawable-win32.c
427         * gdk/win32/gdkevents-win32.c
428         * gdk/win32/gdkgc-win32.c
429         * gdk/win32/gdkglobals-win32.c
430         * gdk/win32/gdkkeys-win32.c
431         * gdk/win32/gdkmain-win32.c
432         * gdk/win32/gdkproperty-win32.c
433         * gdk/win32/gdkselection-win32.c
434         * gdk/win32/gdkwindow-win32.c: Remove the G_WIN32_IS_NT_BASED()
435         and G_WIN32_HAVE_WIDECHAR_API() tests and their false (Win9x)
436         branches, and any variables or static functions used only by the
437         Win9x branches.
438
439         * gdk/win32/gdkprivate-win32.h: Remove backup definitions for
440         constants that aren't missing from current mingw and MSVC6
441         headers.
442
443         * gdk/win32/gdkmain-win32.c
444         * gdk/win32/gdkprivate-win32.h: Remove the _gdk_win32_gdi_failed()
445         function. On NT-based Windows GetLastError() returns error codes
446         also for failed GDI calls, so we can use _gdk_win32_api_failed()
447         always.
448
449 2006-08-29  Emmanuele Bassi  <ebassi@gnome.org>
450
451         * gtk/gtkrecentchoosermenu.c
452         (gtk_recent_chooser_menu_set_current_uri): Break when an item
453         is found and activated. (#353449, based on a patch by Jan Arne
454         Petersen)
455
456 Fri Jul 14 16:13:37 2006  Tim Janik  <timj@gtk.org>
457
458         * gtk/gtkprogressbar.c: introduced ::xspacing and ::yspacing style 
459         properties which make all hardcoded padding and spacing values
460         configurable. properly swap ::text-xalign treatment for RTL widgets.
461
462         * gtk/gtkprogress.c: fixed style property blurbs. made alignment 
463         proeprty more consistent with GtkMisc alignment blurbs. mention
464         RTL treatment for text-xalign.
465
466 Tue Aug 29 11:57:40 2006  Tim Janik  <timj@imendio.com>
467
468         * tests/testgtk.c: allow (most) windows to be resizable.
469         added ellipsization settings to progress bars. 
470
471 2006-08-28  Matthias Clasen   <mclasen@redhat.com>
472
473         * modules/printbackend/cups/gtkprintbackendcups.c: Use a
474         resonable timeout of 3 seconds when polling for printer
475         list updates, instead of 300000 seconds...
476
477 2006-08-28  Michael Natterer  <mitch@imendio.com>
478
479         * gtk/gtktextbufferserialize.c (serialize_text): don't write out
480         </apply_tag> for tags that have already been closed by the logic
481         which turns overlapping spans into XML-able trees. Fixes broken
482         XML when there are overlapping tags in the buffer. Also free two
483         leaked GLists and did some cleanup.
484
485         * tests/Makefile.am
486         * tests/testrichtext.c: new test which creates randomly tagged
487         GtkTextBuffers and serializes/deserializes them.
488
489 2006-08-26  Matthias Clasen  <mclasen@redhat.com>
490
491         * gtk/gtkstatusicon.c (gtk_status_icon_reset_image_data): 
492         Don't leak pixbufs.  (#352264, Ross Burton)
493
494         * gtk/gtklinkbutton.c (set_link_underline): Don't leak
495         PangoAttributes.  (#352391, Paolo Borelli)
496
497 2006-08-25  Matthias Clasen  <mclasen@redhat.com>
498
499         * demos/gtk-demo/Makefile.am:
500         * demos/gtk-demo/textscroll.c: Add an example of automatic
501         scrolling, thanks to Yevgen Muntyan.  (#351206)
502         
503         * gtk/gtkmodules.c (find_module): Use local binding when
504         loading modules.  (#351868)
505
506 2006-08-24  Michael Natterer  <mitch@imendio.com>
507
508         * gdk/quartz/gdkdisplay-quartz.c (gdk_display_get_name): return
509         the hostname instead of NULL.
510
511 2006-08-23  Matthias Clasen  <mclasen@redhat.com>
512
513         * gtk/gtkprinteroptionwidget.[hc]: Fix confusion about
514         names and values in comboboxes, and clean up some
515         coding style issues.
516
517 2006-08-23  Tor Lillqvist  <tml@novell.com>
518
519         * gtk/gtkfilesystemwin32.c (gtk_file_system_win32_make_path):
520         Revert unintended translatable string addition. Use same string
521         in GError as in gtkfilesystemunix.c.
522
523         * gtk/gtkfilesystemwin32.c (_gtk_file_system_win32_path_compare):
524         Fix logic at the end of strings. 
525
526         * gtk/gtkfilesystemwin32.c: Maintain a hash table of live
527         handles and check that we have no outstanding handles at
528         finalization time. (Copying what Matthias did for
529         gtkfilesystemunix.c)
530
531 2006-08-23  Matthias Clasen  <mclasen@redhat.com>
532
533         * gtk/gtkfilesystemunix.c: Maintain a hash table
534         of live handles and check that we have no outstanding
535         handles at finalization time. (Copying what
536         Federico did for gtkfilesystemgnomevfs.c)
537
538 2007-08-22  Matthias Clasen  <mclasen@redhat.com> 
539
540         * Branch for 2.10
541