]> Pileus Git - ~andy/gtk/blob - ChangeLog.pre-2-10
29615937ed117143b0b3736b9278dc97e687574d
[~andy/gtk] / ChangeLog.pre-2-10
1 2005-11-13  Matthias Clasen  <mclasen@redhat.com>
2
3         * gtk/gtktextiter.c (gtk_text_iter_forward_search): Make
4         limit an inclusive boundary.  (#321299)
5
6 2005-11-12  Michael Natterer  <mitch@imendio.com>
7
8         * gtk/Makefile.am: fixed icon rules so gtkbuiltincache.h is only
9         rebuilt if needed.
10
11 2005-11-12  Dom Lachowicz <cinamod@hotmail.com>
12
13         * modules/engines/ms-windows/msw_style.c: Bug #313627. Make win32 
14         theme's handling of toolbars, handleboxes, and menubars more in-line
15         with Microsoft's IE style.
16         * modules/engines/ms-windows/*.c: Indentation cleanups
17         
18 2005-11-12  Matthias Clasen  <mclasen@redhat.com>
19
20         Make builtin icons work in gtk_window_set_icon_name() 
21         (#321046, Maxim Udushlivy)
22
23         * gtk/gtkicontheme.c (insert_theme): Always insert the default
24         theme.
25         (ensure_valid_themes): Call _gtk_icon_theme_ensure_builtin_cache()
26         from here.
27         (theme_lookup_icon, find_builtin_icon): ...and not from here.
28         (gtk_icon_theme_lookup_icon): Remove an unncessary assert.
29         (gtk_icon_theme_get_icon_sizes): Also check builtin icons.
30
31 2005-11-12  Tor Lillqvist  <tml@novell.com>
32
33         * gtk/gtkfilesystemwin32.c (filename_get_info): Don't hide
34         dotfiles, no such convention on Win32. Just hide files with the
35         hidden attribute. (#314627)
36
37 2005-11-11  Federico Mena Quintero  <federico@ximian.com>
38
39         * gtk/gtkfilechooserdefault.c (shortcuts_insert_path): Do not
40         check whether the path is a folder.  It is useful to bookmark
41         files as well (e.g. todo.txt), and this will also help
42         performance.
43         (shortcuts_add_bookmark_from_path): Likewise.
44         (shortcuts_activate_iter): Change folders or select files, as
45         appropriate.
46
47 2005-11-11  Federico Mena Quintero  <federico@ximian.com>
48
49         * tests/autotestfilechooser.c (main): Use
50         g_log_set_default_handler() instead of explicitly setting a
51         handler for each domain.
52
53         * gtk/gtkfilechooserdefault.c (shortcuts_add_volumes): Only get
54         the base path of the volume if it is mounted.
55
56 2005-11-11  Michael Natterer  <mitch@imendio.com>
57
58         Added per-stepper API for GtkRange's stepper sensitivity as
59         discussed in bug #321056:
60
61         * gtk/gtkenums.h: added GtkSensitivityType which can be
62         { AUTO, ON, OFF }.
63
64         * gtk/gtkrange.[ch]: added properties "lower-stepper-sensitivity"
65         and "upper-stepper-sensitivity" and public getters/setters for
66         them. Changed stepper drawing to honor the new properties.
67
68         * gtk/gtk.symbols: added the new symbols.
69
70 2005-11-10  Matthias Clasen  <mclasen@redhat.com>
71
72         * gtk/gtkcombobox.c: Add show-popup and hide-popup signals and
73         emit them when the popup is shown or hidden.  (#162531, Tommi
74         Komulainen)
75
76         * tests/testcombo.c: Add an example of popuplating a combobox
77         on click.
78
79         * gtk/gtktreeview.c (gtk_tree_view_motion_resize_column): Another
80         erroneous semicolon.
81
82         * gdk/x11/gdkcolor-x11.c (gdkx_colormap_get): Remove an erroneous
83         semicolon. 
84
85         Don't corrupt odd keymaps (#316638, Kean Johnston)
86         
87         * gdk/x11/gdkkeys-x11.c (set_symbol): Auxiliary function to
88         handle frobbing keymaps with odd numbers of syms/code.
89         
90         * gdk/x11/gdkkeys-x11.c (update_keymaps): Use set_symbol() to 
91         frob the keymap.
92
93         Improve navigation to parent folders.  (#318444, Andrei Yurkevich)
94         
95         * gtk/gtkpathbar.[hc]: Add a child_path argument to
96         the path_clicked signal.
97         * gtk/gtkfilechooserdefault.c (path_bar_clicked): Select the
98         child_path, if it is provided.
99         * gtk/marshalers.list (path_bar_clicked): Add the necessary
100         glue.
101
102         * gtk/gtkmenu.c: Fix some compiler warnings. (#321141,
103         Kjartan Maraas)
104         
105         * gtk/gtk.symbols: 
106         * gtk/gtktreeview.h: 
107         * gtk/gtktreeview.c: Implement a getter for headers-clickable.
108         (#163851, Richard Hult)
109
110 2005-11-10  Michael Natterer  <mitch@imendio.com>
111
112         Applied patch from maemo-gtk that addresses many issues wrt
113         display migration and display closing (bug #85715).
114
115         * gdk/gdkdisplay.c (gdk_display_dispose): don't just set the
116         default display to NULL when it's closed. Instead set the most
117         recently opened display as new default (if one exists).
118
119         * gdk/gdkpango.c (on_renderer_display_closed): fixed signature
120         of this callback.
121
122         * gdk/gdkscreen.c (gdk_screen_dispose): check if the GCs still
123         exist before unrefing them.
124
125         * gdk/gdkwindow.c (_gdk_window_destroy_hierarchy): if the screen
126         is closed, allow destruction of the root window.
127
128         * gdk/x11/gdkdisplay-x11.c: moved some stuff from finalize() to
129         dispose(), free stuff that was leaked before.
130
131         * gdk/x11/gdkevents-x11.c (_gdk_x11_events_uninit_screen): check if
132         the xsettings_client still exists before destroying it.
133
134         * gdk/x11/gdkkeys-x11.c: added finalization and free the allocated
135         X resources.
136
137         * gdk/x11/gdkpixmap-x11.c: moved stuff from finalize() to new
138         dispose() implementation.
139
140         * gdk/x11/gdkscreen-x11.c: moved stuff from finalize() to
141         dispose() and check if it still exists before unrefing it. Set
142         their pointers to NULL/None *after* upchaining in dispose(),
143         because X11 implementations of members of the parent class still
144         need them for their own destruction.
145
146         * gdk/x11/gdkvisual-x11.c: removed finalize() implementation which
147         was g_error()ing when finalizing a visual.
148
149         * gtk/gtkclipboard.c (gtk_clipboard_finalize): don't use
150         get_clipboard_widget() because it would create the widget if it
151         doesn't exist. Use g_object_get_data() directly instead.
152
153         * gtk/gtktextdisplay.c (on_renderer_display_closed): fixed signature
154         of this callback.
155
156 2005-11-10  Simos Xenitellis  <simos@gnome.org>
157
158         * configure.in: Added Tatar (tt) to ALL_LINGUAS.
159
160 Wed Nov  9 16:29:42 2005  Tim Janik  <timj@imendio.com>
161
162         * gtk/gtkrange.c: patch from maemo-gtk that changes GtkRange
163         to render its arrows insensitive when the adjustment is in
164         its min or max position. this makes range arrow behaviour 
165         consistent with spin button behaviour. (#321056)
166
167 2005-11-09  Tor Lillqvist  <tml@novell.com>
168
169         * gdk/gdkinternals.h
170         * gdk/gdk.c (gdk_debug_keys[]): Add new GDK_DEBUG_DRAW flag to
171         the GdkDebugFlag enum.
172
173         * gdk/win32/gdkdrawable-win32.c: Use DRAW to trigger GDK_NOTEs in
174         this file instead of MISC. Now asking for MISC will give mainly
175         window manipulation debugging output with the Win32 backend.
176
177 2005-11-09  Tor Lillqvist  <tml@novell.com>
178
179         * gdk/win32/gdkwindow-win32.c: Remove unnecessary includes.
180
181         (_gdk_win32_get_adjusted_client_rect): Remove this two-line
182         function which was used only in one place.
183
184         (get_outer_rect): Use _gdk_win32_adjust_client_rect().
185
186         (gdk_window_set_geometry_hints): If we have identical minimum and
187         maximum size hints, remove the resize and maximize
188         decorations/functions. (#104514)
189
190         If we have a maximum size hint, remove the maximize
191         decoration/function but ensure the resize decoration/function is
192         available. Otherwise ensure both resize and maximize
193         decorations/functions are there.
194
195         (set_or_clear_style_bits): Factored out common code from
196         gdk_window_set_decorations() and gdk_window_set_functions(). 
197
198         Hack the window style setting once more: Only touch the window
199         style bits corresponding to the GdkWMDecoration or GdkWMFunction
200         parameter bitmasks. Hopefully this finally is the correct thing to
201         do. We used to clear all other bits than those that were being
202         set, or set all other bits than those that were being cleared.
203
204         Take into account that adding or removing decorations leaves the
205         window's outer size unchanged, i.e., the client area's size and
206         position change. This is apparently not what we want, so change
207         also the window's (outer) position and size appropriately so that
208         the client area's position and size stay constant.
209
210         gtk-demo's color selector dialog is now non-resizable like on X11
211         (I tested with metacity in GNOME). Torn off menus are shrinkable
212         vertically but have a maximum size, and are not maximizable or
213         minimizable, like on X11.
214
215         (gdk_window_set_decorations, gdk_window_set_functions): Let
216         set_or_clear_decorations() do most of the job.
217
218         * gdk/win32/gdkprivate-win32.h: Remove declaration of
219         _gdk_win32_get_adjusted_client_rect().
220
221 2005-11-09  Tor Lillqvist  <tml@novell.com>
222
223         * gdk/win32/gdkwindow-win32.h (struct _GdkWindowImplWin32)
224         * gdk/win32/gdkwindow-win32.c (gdk_window_impl_win32_init,
225         gdk_window_get_type_hint, gdk_window_get_type_hint): Store the
226         type hint. Implement gdk_window_get_type_hint() by just returning
227         the hint stored.
228
229 2005-11-09  Tor Lillqvist  <tml@novell.com>
230
231         * gdk/win32/gdkwindow-win32.c (gdk_window_set_geometry_hints):
232         Remove code that has been permanently ifdeffed out for two years.
233
234 2005-11-08  Matthias Clasen  <mclasen@redhat.com>
235
236         * gdk/gdkgc.c (gdk_gc_finalize): Unref tile and stipple when
237         finalizing a gc.  (#320789, Nickolay V. Shmyrev)
238
239         * gdk/x11/gdkwindow-x11.c (gdk_window_set_icon_list): Ignore
240         icons if they would make the request large enough to cause
241         Xlib to loose the connection.  (#320909, Claudio Saavedra)
242
243 2005-11-08  Michael Natterer  <mitch@imendio.com>
244
245         * gdk/gdk.symbols
246         * gdk/gdkwindow.h
247         * gdk/x11/gdkwindow-x11.c: added gdk_window_get_type_hint() (patch
248         extracted from maemo-gtk). Fixes bug #320872.
249
250 2005-11-07  Matthias Clasen  <mclasen@redhat.com>
251
252         * gtk/gtkfilechooserdefault.c (shortcuts_reorder): Don't
253         looks the bookmark label when reordering.  (#320720, Jeremy Cook)
254
255         * gtk/gtkpathbar.[hc]: Set focus-on-click to FALSE for all buttons.
256         Don't grab focus when a slider button is pressed, instead, use
257         a bit in the pathbar struct to determine whether to scroll up
258         or down.  (#314486, Carlos Garnacho)
259
260         * gtk/gtkentrycompletion.c (_gtk_entry_completion_popup): 
261         Don't popup the completions if the focus has already been
262         moved somewhere else.  (#319914, Christian Persch)
263
264         * gtk/gtktoolitem.c (_gtk_tool_item_toolbar_reconfigured): 
265         Raise the drag_window after reconfiguring the 
266         toolbar.  (#320803, Christian Persch)
267
268         * gtk/gtk.symbols: 
269         * gtk/gtkfilechooserbutton.h: 
270         * gtk/gtkfilechooserbutton.c: Add a focus-on-click property
271         with setter and getter.  (#318945, Christian Persch)
272         
273 Mon Nov  7 16:15:16 2005  Tim Janik  <timj@imendio.com>
274
275         * configure.in: fixed missing $X_CFLAGS setup in case x11.pc is present.
276
277 2005-11-07  Matthias Clasen  <mclasen@redhat.com>
278
279         * configure.in: Adjust to the stock icon changes.
280         
281 2005-11-07  Tor Lillqvist  <tml@novell.com>
282
283         * gdk/win32/gdkcursor-win32.c (pixbuf_to_hbitmaps_normal):
284         Correct the calculation of maskstride. (#320152, Peter Zelezny)
285         
286 2005-11-06  Michael Natterer  <mitch@imendio.com>
287
288         * gtk/Makefile.am (icons): fixed rule to actually create the
289         symlinks, erroring out if anything goes wrong.
290
291 2005-11-06  Tor Lillqvist  <tml@novell.com>
292
293         * gtk/updateiconcache.c (build_cache): Can't rename a file if the
294         target exists on Win32. First rename the target temporarily, then
295         if the renaming of the source to target fails, restore the
296         original name for the target.
297
298         * gtk/Makefile.am: Use EXEEXT in the dependency on gtk-update-icon-cache.
299
300 2005-11-06  Tor Lillqvist  <tml@novell.com>
301
302         (pixbuf_to_hbitmaps_alpha_winxp): Use an 1-bit mask bitmap,
303         like pixbuf_to_hbitmaps_normal().
304         (_gdk_win32_pixbuf_to_hicon_supports_alpha): Check
305         G_WIN32_IS_NT_BASED() first, so we can pretend being on Win9x by
306         setting the G_WIN32_PRETEND_WIN9X environment variable.
307         
308 2005-11-06  Tor Lillqvist  <tml@novell.com>
309
310         Make icon masks work on Win98 (#320152, Peter Zelezny)
311
312         * gdk/win32/gdkcursor-win32.c (create_color_bitmap): Take also a
313         parameter for the depth of the bitmap, so that this function can
314         be used to create 1-bit bitmaps, too.
315         (pixbuf_to_hbitmaps_normal): Create an 1-bit bitmap for the mask,
316         and initialize it properly.
317
318 2005-11-04  Matthias Clasen  <mclasen@redhat.com>
319
320         Store builtin stock icons in an icon cache, instead of
321         populating a hash table with pixbufs at startup, to save both
322         memory and startup time.
323
324         * gtk/stock-icons/*: Reorganize the icons in a directory structure
325         suitable for gtk-update-icon-cache, and rename them to match the
326         stock ids.
327
328         * gtk/gtkiconcache.[hc]: Support non-mmapped icon caches, and
329         add _gtk_icon_cache_has_icon_in_directory().
330
331         * gtk/updateiconcache.c: Support a --source <VARIABLE> argument
332         to store the contents of the icon cache in a C header.
333
334         * gtk/gtkbuiltincache.h: Generated private header which contains 
335         the icon cache for the builtin icons.
336
337         * gtk/gtkicontheme.c: Create a GtkIconCache for the builtin
338         icons, and use that in addition to the hash table whenever
339         builtin icons are searched.
340
341         * gtk/gtkiconfactory.c: Add GTK_ICON_SOURCE_STATIC_ICON_NAME and
342         use it for static stock ids. 
343         (get_default_icons): Don't add the builtin
344         icons to the icon theme, just register the stock ids.
345         (render_fallback_image): Take the fallback image out of the
346         builtin icon cache.
347         
348         * gtk/Makefile.am: Remove stock-icons from SUBDIRS and add 
349         the necessary machinery to rebuild gtkbuiltincache.h.
350
351 2005-11-04  Michael Natterer  <mitch@imendio.com>
352
353         * gtk/gtkrc.c (gtk_rc_reparse_all_for_settings): applied patch
354         from maemo-gtk that changes the mtime check for rc files from
355         '>' to '!=', otherwise theme changes go unnoticed when turning
356         back the clock (Tommi Komulainen).
357
358 2005-11-04  Tor Lillqvist  <tml@novell.com>
359
360         * gtk/gtkstatusicon.c (gtk_status_icon_set_tooltip): Plug memory
361         leak on Win32.
362
363 2005-11-03  Tor Lillqvist  <tml@novell.com>
364
365         * gdk/win32/gdkcursor-win32.c: As there is only one GdkDisplay in
366         the Win32 backend, check that GdkDisplay* parameters are equal to
367         _gdk_display instead of using the unnecessarily general
368         GDK_IS_DISPLAY().
369
370         (pixbuf_to_hbitmaps_alpha_winxp): Rename the variables for the
371         color bitmap to have "color" in their name, for similarity with
372         pixbuf_to_hbitmaps_normal(). Create a color bitmap for the mask,
373         too, instead of creating a b&w bitmap with CreateBitmap(). Set up
374         the mask bitmap's contents, ones for those pixels in the color
375         bitmap where the alpha is zero, zero for other pixels. We used to
376         use an uninitialized mask bitmap! This meant that icons and
377         cursors created presumably worked more or less by accident.
378         Totally blank icons with zero alpha everywhere (as used by
379         gtktrayicon.c) definitely did not work as expected.
380
381         * gtk/Makefile.am: Include gtkstatusicon.c on all platforms.
382
383         * gtk/gtkstatusicon.c: Implement for Win32. Use code from
384         gtktrayicon-win32.c as applicable. (gtktrayicon-win32.c is not
385         necessary and can be removed from CVS. It has never been mentioned
386         in gtk/Makefile.am.) No tray icon widget, GtkImage or GtkTooltips
387         are used on Win32. One label widget is used (but never shown) as
388         gtk_widget_render_icon() needs a widget.
389
390         Ifdefs used as necessary in several places. It might be cleaner to
391         split out the backend-specific parts to separate files, or at
392         least collect them into separate blocks in the file.
393
394         (wndproc): New function. Window procedure to monitor mouse events
395         in the system tray icon. Call gtk_status_icon_button_press() as
396         needed.
397         (create_tray_observer): New function. Creates a hidden window that
398         only serves as a tray icon message observer.
399
400         * tests/teststatusicon.c (icon_activated): Position the dialog
401         with GTK_WIN_POS_CENTER.
402         (do_quit): New function, hide and unref the GtkStatusIcon, and
403         call gtk_main_quit().
404         (popup_menu): Add a Quit menu item that calls do_quit().
405         
406 2005-11-02  Tor Lillqvist  <tml@novell.com>
407
408         * gdk/win32/gdkcolor-win32.c
409         * gdk/win32/gdkscreen-win32.c
410         * gdk/win32/gdkwindow-win32.c: Whitespace consistency
411         fixes. Remove superfluous test for GdkWindow* parameters being
412         non-NULL. Testing GDK_IS_WINDOW() is enough. As there is only one
413         GdkScreen and one GdkDisplay in the Win32 backend, use those
414         variables instead of the getter functions. For GdkDisplay* and
415         GdkScreen* parameters, check that they are equal to the
416         corresponding singleton variables instead of the more general
417         GDK_IS_DISPLAY() or GDK_IS_SCREEN().
418
419 2005-11-02  Matthias Clasen  <mclasen@redhat.com>
420
421         * gtk/gtktextview.c: Remove some g_return_if_fail() from
422         static functions, replace some others by g_assert().
423         
424         * gtk/gtktextview.c (selection_motion_event_handler) 
425         (gtk_text_view_start_selection_drag): Keep track of the original
426         selection boundaries during a drag selection, in order to correctly
427         decide when to extend or shrink the selection.  (#320167,
428         reported by Arvind S N, patch by Paolo Borelli)
429
430         * gtk/gtktextbtree.c (_gtk_text_line_char_to_byte_offsets): 
431         * gtk/gtktextiter.c (gtk_text_iter_backward_chars): Replace
432         manual offset calculations by g_utf8_offset_to_pointer().
433         (#320360, Paolo Borelli)
434
435 Tue Nov  1 16:18:24 2005  Tim Janik  <timj@imendio.com>
436
437         * gtk/gtkrbtree.[hc]: get rid of GAllocator usage, allocate and free 
438         nodes via the g_slice_*() API.
439         _gtk_rbtree_new(): fixed wrong node allocation via g_new().
440
441 2005-11-01  Tor Lillqvist  <tml@novell.com>
442
443         * gdk/win32/gdkprivate-win32.h
444         * gdk/win32/gdkglobals-win32.c
445         * gdk/win32/gdkmain-win32.c (_gdk_windowing_init): Add more
446         pre-interned GdkAtoms and pre-registered clipboard formats. Sort
447         their declarations, definitions and assignments into a more
448         logical and consistent order.
449
450         * gdk/win32/gdkmain-win32.c (_gdk_win32_cf_to_string): Include the
451         CF_ prefix for the predefined clipboard format names. Put quotes
452         around registered format names to distinguish them.
453         
454         * gdk/win32/gdkproperty-win32.c (gdk_property_change): Return
455         immediately with a warning if the property type is STRING, TEXT,
456         COMPOUND_TEXT or SAVE_TARGETS, as these are X11-specific that we
457         should never pretend to handle on Win32. Handle only UTF8_STRING
458         here, other formats with delayed rendering. Use \uc1 instead of
459         \uc0 when generating Rich Text Format for easier testability on
460         XP, where WordPad misinterprets \uc0 encoded characters. Add more
461         GDK_NOTE debugging output for Clipboard operations.
462
463         * gdk/win32/gdkselection-win32.c: Debugging printout improvements.
464         (gdk_selection_convert): Don't pretent to handle STRING, just
465         UTF8_STRING. Streamline error handling, don't unnecessarily have a
466         GError which then isn't used for anything anyway if it gets set.
467         (gdk_win32_selection_add_targets): Skip also STRING, TEXT,
468         COMPOUND_TEXT and SAVE_TARGETS in addition to UTF8_STRING.
469
470         * config.h.win32.in: Sync with what configure produces.
471
472         * configure.in: Don't look for X_PACKAGES unless building for
473         x11. (#313986, John Ehresman)
474
475 2005-10-28  Erdal Ronahi  <erdal.ronahi@gmail.com>
476
477         * configure.in: Added ku (Kurdish) to ALL_LINGUAS
478                         Wondered why there was no ku there before??
479
480 2005-10-28  Matthias Clasen  <mclasen@redhat.com>
481
482         * gtk/gtkentrycompletion.c (_gtk_entry_completion_popup): Add the popup
483         window to the toplevels window group.  (#319912, Christian Persch)
484
485 2005-10-28  Kristian Rietveld  <kris@gtk.org>
486
487         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_row_deleted): fix
488         stupid thinko.
489
490 2005-10-28  Matthias Clasen  <mclasen@redhat.com>
491
492         * gtk/gtkdnd.c (gtk_drag_get_cursor): Fix the anchor of the default
493         drag cursors.  (#319200, Federico Mena Quintero)
494
495         * gtk/gtktreeview.c (gtk_tree_view_search_key_press_event): Handle
496         Shift-G to go to the previous match, like firefox.  (#320061, Christian 
497         Neumair)
498
499         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_build_level): Fix a
500         C99ism.  (#320000, Kazuki Iwamoto)
501
502         * gtk/gtkaboutdialog.c (gtk_about_dialog_init): Add the little 
503         stars.  (#319985, Bastien Nocera)
504
505         * gtk/gtktreeview.c (gtk_tree_view_search_entry_flush_timeout): Return
506         FALSE, so we don't flush repeatedly.  (#319151, Alexander Larsson)
507
508 2005-10-26  Michael Natterer  <mitch@imendio.com>
509
510         Fix bug #319974:
511
512         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_set_property):
513         make sure that setting any of pixbuf/stock-id/icon-name resets the
514         others because they are mutually exclusive, and that unsetting any
515         of them only resets the pixbuf and nothing else. Also added
516         some missing g_object_notify().
517
518         (gtk_cell_renderer_pixbuf_get_property): simplified calls to
519         g_value_set_object().
520
521         (gtk_cell_renderer_pixbuf_create_stock_pixbuf)
522         (gtk_cell_renderer_pixbuf_create_named_icon_pixbuf): added
523         g_object_notify ("pixbuf").
524
525 2005-10-27  Matthias Clasen  <mclasen@redhat.com>
526
527         * gtk/gtktreeview.c (gtk_tree_view_button_press): Be more 
528         careful about initializing cell_area.  (#319382, Tommi
529         Komulainen)
530
531         * gtk/gtkcombobox.c (gtk_combo_box_key_press): Don't eat
532         Ctrl-PageUp/PageDown.  (#318670, Christian Neumair)
533
534         * demos/gtk-demo/clipboard.c (paste_received): Only set the
535         text if it is not NULL.  (#319930, Thomas Klausner)
536
537         * gtk/gtkselection.c (gtk_selection_data_get_pixbuf): Close the
538         loader before trying to get the pixbuf.  (#319930, Thomas Klausner)
539
540 2005-10-26  Matthias Clasen  <mclasen@redhat.com>
541
542         * gtk/gtkfilesystem.c (gtk_file_system_module_load): 
543         * gtk/gtkthemes.c (gtk_theme_engine_load): 
544         * gtk/gtkimmodule.c (gtk_im_module_load): Use G_MODULE_BIND_LAZY
545         when dlopening modules.  (#319557, Laszlo Peter)
546
547 2005-10-26  Matthias Clasen  <mclasen@redhat.com>
548
549         * gtk/gtktextbtree.c (gtk_text_btree_resolve_bidi): Only use text
550         segments when determining text direction.  (#319065, Tommi Komulainen)
551
552         * gtk/gtktreeview.c (gtk_tree_view_destroy): Don't crash
553         on duplicate destroy.  (#318953, Gustavo Carneiro)
554
555         * gtk/gtkfilechooserbutton.c (gtk_file_chooser_button_new_with_dialog): 
556         Point out that destroy-with-parent is a bad idea for the dialog
557         passed to this function.  (#318943, Christian Persch)
558
559         * */Makefile.am: use $(GLIB_MKENUMS) instead of 
560         glib-mkenums.  (#318582, Damien Carbery)
561
562         * gtk/gtktreemodel.c (gtk_tree_model_rows_reordered): Clarify
563         docs.  (#317682, Christian Neumair)
564
565         * gdk/x11/gdkdnd-x11.c: Remove an extra const which doesn't
566         seem to affect the placement of the data in the readonly 
567         section, and causes problems with some compilers.  (#317844)
568
569 2005-10-25  Matthias Clasen  <mclasen@redhat.com>
570
571         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_cell_process_action):
572         Fix some issues with background drawing in RTL.  (#318781,
573         Eric Cazeaux)
574
575         * tests/Makefile.am:
576         * tests/testentrycompletion.c: Apply a patch by Christian
577         Persch to add property editors.
578
579         * gtk/gtkstatusicon.c: Emit activate on single-click,
580         not on double-click, change proposed by Milosz Derezynski.
581
582 2005-10-25  Kristian Rietveld  <kris@gtk.org>
583
584         Fixes #311955, reported by Markku Vire; and a lot more.
585
586         * gtk/gtktreemodelfilter.c: Made this thing work correctly.
587         Levels can now have invisible nodes cached, functions have been
588         rewritten/refactored to take this into account; also the logic in
589         some functions has been corrected.
590         
591         Each referenced node now references all visible children or a single
592         invisible child, in order to be able to monitor all changes in the
593         child model required for correct operation.
594
595         When a virtual root is set, all nodes on the virtual root level are
596         referenced.
597
598         At last, a bunch of random bug fixes and comment updates.
599
600 2005-10-25  Matthias Clasen  <mclasen@redhat.com>
601
602         * gtk/gtktexttagtable.c (gtk_text_tag_table_foreach): Add some
603         more docs.  (#319722, Paolo Borelli)
604
605         * gdk/x11/gdkxftdefaults.c (init_xft_settings): Make the 
606         initialization of screen_x11->xft_rgba more explicit.  (#319627,
607         Bogdan Nicula)
608
609         * gtk/gtkfilechooser.c (gtk_file_chooser_class_init): Fix whitespace
610         in a blurb.  (#319499, Francisco Javier F. Serrador)
611
612 2005-10-24  Matthias Clasen  <mclasen@redhat.com>
613
614         Add settings to hide the input method and Unicode control character
615         submenus in the context menus of GtkEntry and GtkTextView.  
616         
617         * gdk/x11/gdkevents-x11.c: Map GTK+ settings to X settings.
618         
619         * gtk/gtksettings.c (gtk_settings_class_init): Declare GTK+ settings here.
620
621         * gtk/gtktextview.c (popup_targets_received): 
622         * gtk/gtkentry.c (popup_targets_received): Use the settings here.
623
624 2005-10-24  Kristian Rietveld  <kris@gtk.org>
625
626         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_row_inserted): emitting
627         row-has-child-toggled when the level is not in the cache does not
628         make sense.  (This bug probably crept in during the early stages
629         of GtkTreeModelSort when there wasn't a correct row-has-child-toggled
630         implementation yet),
631         (gtk_tree_model_sort_real_unref_node): only get the child iter
632         when we will actually also use it.
633
634 2005-10-22  Michael Natterer  <mitch@imendio.com>
635
636         * gtk/gtktreeview.c (gtk_tree_view_scroll_to_cell): check for the
637         widget being realized, in addition to being visible, to avoid
638         running into precondition check in gtk_tree_view_get_cell_area().
639         (approved by Kris).
640
641 2005-10-22  Dom Lachowicz <cinamod@hotmail.com>
642
643         * modules/engines/ms-windows/msw_style.c (setup_msw_rc_style): 
644         Experimentally, scrollbar steppers can shrink to 8 pixels on 
645         Win32. Reflect that in the theme.
646         * modules/engines/ms-windows/Theme/gtk-2.0/gtkrc: Experimentally,
647         there is a 1-pixel border between a scrollbar and its child
648         in ScrolledWindows on Win32. Reflect that in the theme.
649         
650 2005-10-20  Matthias Clasen  <mclasen@redhat.com>
651
652         * gtk/gtklabel.c (gtk_label_create_window): Use GDK_WINDOW_CHILD
653         for the selection window.  (#318806, Alex Larsson)
654
655 2005-10-18  Federico Mena Quintero  <federico@ximian.com>
656
657         Fixes bug #317999:
658
659         * tests/autotestfilechooser.c
660         (test_button_folder_states_for_action): Test that we have either
661         $cwd or the explicitly-set folder.
662         (test_reload_sequence): Likewise.
663
664         * gtk/gtkfilechooserdefault.c
665         (gtk_file_chooser_default_get_current_folder): If our reload_state
666         is RELOAD_EMPTY, return a GtkFilePath corresponding to $cwd.
667
668 2005-10-14  Tor Lillqvist  <tml@novell.com>
669
670         * gdk/win32/gdkdisplay-win32.c: Remove the clipboard viewer code.
671         It didn't really do anything useful, and was just confusing and
672         incomplete. Comments claimed we don't do delayed rendering, but in
673         fact we do, for images. (The delayed rendering code has other
674         problems, though, see #168173.) The clipboard viewer code was
675         probably even buggy (the WM_CHANGECBCHAIN handled didn't propagate
676         the message when necessary). It was just test code, it said so in
677         a comment. Add something similar back later if necessary.
678
679         (_win32_on_clipboard_change,
680         _gdk_win32_register_clipboard_notification): Remove.
681
682         (gdk_display_supports_selection_notification,
683         gdk_display_request_selection_notification): Always just return
684         FALSE. We didn't generate any GDK_OWNER_CHANGE events anywhere.
685
686 2005-10-13  Tor Lillqvist  <tml@novell.com>
687
688         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Don't treat
689         Alt-Enter specially. It does not have any special meaning and
690         should be passed on to the application. (#318378, Tim Evans)
691
692 2005-10-13  Tor Lillqvist  <tml@novell.com>
693
694         Set visual depth to 24 for 32 bits-per-pixel devices on
695         Win32. This allows gdk_drawable_real_draw_pixbuf() to use the
696         optimized composite_0888() function rather than the slower image
697         dithering functions to draw pixbufs (#313993, John Ehresman)
698
699         * gdk/win32/gdkimage-win32.c (_gdk_win32_new_image): Use
700         _gdk_windowing_get_bits_for_depth() to initialize
701         GdkImage::bits_per_pixel.
702         (_gdk_windowing_get_bits_for_depth): Return 32 bits for depth 24.
703
704         * gdk/win32/gdkpixmap-win32.c (gdk_pixmap_new): Use
705         _gdk_windowing_get_bits_for_depth() to initialize
706         BITMAPINFOHEADER::biBitCount.
707
708         * gdk/win32/gdkvisual-win32.c (_gdk_visual_init): Set
709         GdkVisual::depth to 24 even if GetDeviceCaps(BITSPIXEL) returns
710         32.
711
712 2005-10-12  Stefan Kost  <ensonic@users.sf.net>
713
714         * demos/gtk-demo/appwindow.c: (about_cb):
715           use PACKAGE_VERSION,bump year (#318654)
716
717 2005-10-11  Matthias Clasen  <mclasen@redhat.com>
718
719         * gtk/gtktextbtree.c (_gtk_text_btree_delete): Try to match an off 
720         toggle here with the matching on toggle if it immediately follows. 
721         This is a common case, and handling it here prevents quadratic blowup 
722         in cleanup_line() below.  (#317125)
723
724         * gtk/gtktextsegment.h: 
725         * gtk/gtktextsegment.c (_gtk_char_segment_new_from_two_strings): Pass
726         the character counts into this function instead of computing them
727         again.
728
729 2005-10-10  Tommi Komulainen  <tommi.komulainen@iki.fi>
730
731         * gtk/gtkfilechooser.h (GtkFileChooserError): Add ALREADY_EXISTS error
732         code.
733         * gtk/gtkfilechooserdefault.c
734         (gtk_file_chooser_default_add_shortcut_folder): Return an error code
735         when the shortcut already exists in the sidebar.  (#147521)
736
737 2005-10-09  Matthias Clasen  <mclasen@redhat.com>
738
739         * tests/testcombo.c: Demonstrate how to use custom widgets in
740         a GtkComboBox.  
741
742 2005-10-07  Federico Mena Quintero  <federico@ximian.com>
743
744         Fixes bug #317999:
745
746         * tests/autotestfilechooser.c (test_reload_sequence): Ensure that
747         the the result of gtk_file_chooser_get_folder() is NULL or
748         non-NULL at the right times.  Log the tests.
749         (test_button_folder_states): New test for the initial states of
750         the current folder in GtkFileChooserButton.
751         (main): Test that the number of warnings/errors/critical errors is
752         zero.
753
754         * gtk/gtkfilechooser.c (gtk_file_chooser_get_current_folder):
755         Clarify the documentation on when this can return NULL.
756         (gtk_file_chooser_get_current_folder_uri): Likewise.
757
758         * gtk/gtkfilechooserbutton.c (struct
759         _GtkFileChooserButtonPrivate): Added a folder_has_been_set flag;
760         we use it to keep track of whether a folder has been set.
761         (gtk_file_chooser_button_map):  Implement.  If no folder has been
762         loaded before, we at least try to load $cwd here.
763         (gtk_file_chooser_button_constructor): If the construct-time
764         dialog already has a folder set, turn on our folder_has_been_set
765         flag.
766         (dialog_current_folder_changed_cb): Turn on our
767         folder_has_been_set flag.
768
769 2005-10-07  Michael Natterer  <mitch@gimp.org>
770
771         * gtk/gtkfilechooserdefault.c: remove some explicit #defines of
772         PROFILE_FILE_CHOOSER because they break compilation after the
773         removal of <unistd.h>.
774
775 2005-10-07   Matthias Clasen  <mclasen@redhat.com>
776
777         * gtk/gtkfilechooserdefault.c: Properly fix the unistd.h include
778         by moving it out of the profiling ifdef.
779
780         * gtk/gtkfilechooserdefault.c: Remove a redundant (and
781         unconditional) include of unistd.h  (#318211, Kazuki Iwamoto)
782
783         * gtk/gtktexttag.c (gtk_text_attributes_ref): Use
784         g_return_val_if_fail(), not g_return_if_fail().  (#318412,
785         Kazuki Iwamoto)
786
787 2005-10-06  Matthias Clasen  <mclasen@redhat.com> 
788                 
789         * gtk/gtk.symbols:
790         * gtk/gtktextbuffer.h:
791         * gtk/gtktextbuffer.c: Add a readonly has-selection property
792         with a getter.  (#318161, Paolo Borelli)
793
794 2005-10-05  Matthias Clasen  <mclasen@redhat.com>
795
796         * README.in: Start collecting release notes for 2.10.
797
798         * gtk/gtkrc.c (gtk_rc_clear_realized_style): Readd the memory
799         leak fix, since the assertion failures were traced to 
800         an xchat bug.  (#314696)
801         
802         * gtk/gtkstyle.c (gtk_style_detach):
803         (gtk_style_attach):  Documentation improvements.
804         (gtk_style_detach): Assert that the attach_count is > 0.
805
806 2005-10-04  Federico Mena Quintero  <federico@ximian.com>
807
808         * gtk/gtkfilechooserdefault.c (switch_to_shortcut): Take a
809         shortcut position, not a ShortcutsIndex, to make the function more
810         generic.
811         (home_folder_handler): Pass the resolved index to
812         switch_to_shortcut(), rather than just SHORTCUTS_HOME.
813         (desktop_folder_handler): Likewise for SHORTCUTS_DESKTOP.
814         (gtk_file_chooser_default_class_init): Add a "quick-bookmark"
815         binding signal, and bind it to Alt-1, Alt-2. ..., Alt-0.  These
816         make the respective key switch to the first, second, ..., tenth
817         bookmark.
818         (quick_bookmark_handler): Implement.
819
820 2005-10-04  Federico Mena Quintero  <federico@ximian.com>
821
822         * gtk/gtkpathbar.c (get_dir_name): Don't special-case Home and
823         Desktop; just use their real names on the file system for the
824         user-visible names.
825
826         * gtk/gtkfilechooserdefault.c
827         (gtk_file_chooser_default_class_init): Add a "desktop-folder"
828         binding signal, and bind it to M-d by default.
829         (desktop_folder_handler): Implement the default handler.
830         (home_folder_handler): Use a helper function.
831         (switch_to_shortcut): New helper function.
832         (shortcuts_append_home): Don't special-case the name of "Home";
833         just use the folder name.
834
835 2005-10-04  Tor Lillqvist  <tml@novell.com>
836
837         * gtk/gtkcalendar.c (gtk_calendar_init): Make it compile without
838         HAVE__NL_TIME_FIRST_WEEKDAY. (#317910, Mathias Hasselmann)
839
840 2005-10-04  Matthias Clasen  <mclasen@redhat.com>
841
842         * gtk/gtkrc.c (gtk_rc_clear_realized_style): Revert the change
843         from yesterday, since it leads to assertion failures.  (#317879,
844         Sebastian Bacher)
845
846 2005-10-03  Matthias Clasen  <mclasen@redhat.com>
847
848         * gtk/gtkcalendar.c (gtk_calendar_init): Call 
849         calendar_compute_days() after setting priv->week_start.
850
851 2005-10-03  Matthias Clasen  <mclasen@redhat.com>
852
853         * gtk/gtkrc.c (gtk_rc_clear_realized_style): Unref the style when
854         removing it from the hash table.  (#314696, Benjamin Berg)
855
856 2005-10-01  Tor Lillqvist  <tml@novell.com>
857
858         * gdk/win32/gdkdrawable-win32.c (blit_from_pixmap): In case
859         BitBlt() fails with ERROR_INVALID_HANDLE, the most probable cause
860         is that the the desktop isn't visible because the session has been
861         switched, the screen is locked, or a terminal server session
862         disconnected, so no error message necessary. (#137796)
863
864         It is of course remotely possible that BitBlt() failing with
865         ERROR_INVALID_HANDLE might also be caused by some other
866         problem. We could strive for perfection and track whether the
867         desktop is visible by using WTSRegisterSessionNotification() and
868         handling WM_WTSESSION_CHANGE. I think that's overdoing it just for
869         this issue, though. If we would track desktop visibility, we
870         should then avoid even trying to update the display at all while
871         the desktop isn't visible.
872
873 2005-09-30  Matthias Clasen  <mclasen@redhat.com>
874
875         * gtk/gtkcalendar.c (gtk_calendar_init): Another attempt
876         to correct the calculations for the first week day. We may
877         just have to remove this code if too many locales turn out 
878         to have broken data. 
879
880         * gtk/gtkimage.c (gtk_image_expose): Don't leak pixbuf in
881         some cases.  (#317611, Tommi Komulainen)
882
883         * gtk/gtksocket-x11.c (_gtk_socket_windowing_size_request):
884         Prevent overflow when storing size hints in an unsigned
885         short variable. Tracked down by Ray Strode and Søren Sandmann.
886
887 2005-09-29  Matthias Clasen  <mclasen@redhat.com>
888
889         * gtk/gtkbutton.c (gtk_button_set_image): Check arguments.  (#317491,
890         Paolo Borelli)
891
892         * gtk/gtkpaned.c (gtk_paned_grab_notify): Stop drags when being
893         grab shadowed.  (#317332)
894
895 2005-09-29  Tor Lillqvist  <tml@novell.com>
896
897         * gtk-zip.sh.in: DLLs are always in bin nowadays, no need to test.
898
899 2005-09-28  Federico Mena Quintero  <federico@ximian.com>
900
901         * tests/autotestfilechooser.c (test_reload_sequence): Oops, return
902         if the unmap test fails.
903         (test_reload_sequence): Use gtk_widget_show_now() instead of
904         gtk_widget_show() for the dialog.
905         Thanks to Tim Janik for noticing these.
906
907 2005-09-28  Federico Mena Quintero  <federico@ximian.com>
908
909         * tests/testcellrenderertext.c: New file with a set of tests for
910         GtkCellRendererText.  The idea is to run a text renderer through
911         most of its interesting property values to see that it works
912         correctly.
913
914         * tests/Makefile.am: Added testcellrenderertext.
915
916         * gtk/gtkfilechooserdefault.c (load_set_model): Mark the
917         entry/exit of this function for profiling.
918         (gtk_file_chooser_default_style_set): Mark the start/end of the
919         calls to the parent class and the the signal emission for profiling.
920
921 2005-09-29  Tor Lillqvist  <tml@novell.com>
922
923         * gtk/gtkmain.c (_gtk_get_localedir): The locale directory is
924         passed to bindtextdomain() which isn't UTF-8-aware, so convert to
925         system codepage using g_win32_locale_filename_from_utf8().
926         (#317457, Kazuki Iwamoto)
927
928 2005-09-28  Matthias Clasen  <mclasen@redhat.com>
929
930         * gtk/gtkselection.c (_gtk_selection_request): Free mult_atoms 
931         here. (#317039, Paolo Borelli)
932
933         * gtk/gtktexttag.h: 
934         * gtk/gtktexttag.c (gtk_text_attributes_ref): Return the attributes
935         to make this function work as boxed copy function.  (#317455,
936         Gustavo Carneiro)
937
938         * gtk/gtkclipboard.c (request_image_received_func): Don't unref
939         NULL.  (#316828, Tor Lillqvist)
940
941 2005-09-28  Tor Lillqvist  <tml@novell.com>
942
943         * modules/input/imime.c: Include <config.h>. (#317444, Kazuki
944         Iwamoto)
945
946 2005-09-27  Federico Mena Quintero  <federico@ximian.com>
947
948         Don't reload the current folder unnecessarily on ::map().
949
950         * gtk/gtkfilechooserprivate.h (ReloadState): New enum to represent
951         the reloading state.
952         (struct _GtkFileChooserDefault): Added a "reload_state" field.
953
954         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_init):
955         Initialize impl->reload_state.
956         (gtk_file_chooser_default_map): Check the impl->reload_state; load
957         a default folder if no folder has been set, or reload the current
958         one only if we had been unmapped first.
959         (gtk_file_chooser_default_update_current_folder): Set the
960         reload_state to RELOAD_HAS_FOLDER.
961         (gtk_file_chooser_default_unmap): Implement, and set the
962         reload_state to RELOAD_WAS_UNMAPPED.
963         (shortcuts_model_create): Don't call shortcuts_add_bookmarks()
964         here; they'll get (re)loaded on ::map() anyway.
965
966         * gtk/gtkfilechooserwidget.c
967         (gtk_file_chooser_widget_constructor): Don't set a default folder here.
968
969         * tests/autotestfilechooser.c (test_action_widgets): Don't take in
970         a dialog; build it ourselves.
971         (test_reload): New test to ensure that we don't load the default
972         folder more than once, and that we reload it when
973         unmapping/remapping.
974         (get_impl_from_dialog): New utility function.
975         (test_widgets_for_current_action): Use get_impl_from_dialog().
976
977 2005-09-27  Federico Mena Quintero  <federico@ximian.com>
978
979         * gtk/gtkfilechooserdefault.c
980         (gtk_file_chooser_default_constructor): Mark the entry/exit of
981         this function for profiling.
982         (check_icon_theme): Likewise.
983         (change_icon_theme): Likewise.
984         (settings_notify_cb): Likewise.
985         (gtk_file_chooser_default_screen_changed): Likewise.
986         (update_chooser_entry): If the selection is empty, clear the file
987         name entry only if we are in CREATE_FOLDER mode.  In SAVE mode,
988         nothing will be selected when the user starts typeahead in the
989         treeview, and we don't want to clear the file name entry in that
990         case --- the user could be typing-ahead to look for a folder name.
991         Fixes bug #308332, patch by Jürg Billeter.
992
993 2005-09-27  Matthias Clasen  <mclasen@redhat.com>
994
995         * gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup):
996         Pop below the entry if there's more free space below the entry
997         than above.  (#316948, Tommi Komulainen)
998
999 2005-09-26  Federico Mena Quintero  <federico@ximian.com>
1000
1001         Do not create the save mode-specific widgets in the open modes, so
1002         that we don't carry their baggage around.
1003
1004         * gtk/gtkfilechooserdefault.c
1005         (gtk_file_chooser_default_constructor): Don't create the
1006         save_widgets here.
1007         (save_widgets_create): Set the impl->save_widgets directly here,
1008         instead of passing the widgets back to the caller.  Also, pack
1009         them into the impl's box.
1010         (update_appearance): Create or destroy the save widgets as
1011         appropriate.  Set the action of the save_file_name_entry here.
1012         (shortcuts_add_current_folder): Set the active item in the
1013         save_folder_combo only if it exists.
1014         (gtk_file_chooser_default_set_property): Don't set the action of
1015         the save_file_name_entry here.
1016         (gtk_file_chooser_default_update_current_folder): Set the base
1017         folder of the save_file_name_entry only if the entry exists.
1018         (shortcuts_drag_data_received_cb): Cast the selection_data->data
1019         to (const char *) since that's what shortcuts_drop_uris() expects.
1020         (file_list_drag_data_received_cb): Likewise, for
1021         g_uri_list_extract_uris().
1022
1023 2005-09-26  Tor Lillqvist  <tml@novell.com>
1024
1025         * gdk/win32/gdkwindow-win32.c (gdk_window_shape_combine_mask): Set
1026         the shaped flag here, too. (#316871)
1027         (gdk_window_shape_combine_region): Currently unimplemented, so
1028         don't do anything to the shaped flag here.
1029
1030 2005-09-26  Matthias Clasen  <mclasen@redhat.com>
1031
1032         Fix #316871, reported by Dan Winship:
1033         
1034         * gdk/gdkwindow.h (struct _GdkWindowObject): Add a shaped flag.
1035
1036         * gdk/x11/gdkwindow-x11.c (gdk_window_shape_combine_mask) 
1037         (gdk_window_shape_combine_region): Set it here.
1038
1039         * gdk/gdkwindow.c (gdk_window_invalidate_maybe_recurse): Don't
1040         remove the child area for shaped windows.
1041
1042 2005-09-23  Matthias Clasen  <mclasen@redhat.com>
1043
1044         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_finalize):
1045         Don't leak expander pixbufs.  (#316946, Tommi Komulainen)
1046
1047 2005-09-22  Michael Natterer  <mitch@imendio.com>
1048
1049         Renamed GtkCellRendererKeys to GtkCellRendererAccel to be
1050         consistent with GTK+ terminology:
1051
1052         * gtk/gtkcellrendererkeys.[ch]
1053         * tests/testkeys.c: removed...
1054
1055         * gtk/gtkcellrendereraccel.[ch]
1056         * tests/testaccel.c: ...and added.
1057
1058         * gtk/Makefile.am
1059         * gtk/gtk.h
1060         * gtk/gtk.symbols
1061         * tests/Makefile.am: changed accordingly.
1062
1063 2005-09-22  Matthias Clasen  <mclasen@redhat.com>
1064
1065         * gtk/gtkwidget.c (gtk_widget_class_init): Fix the documentation
1066         for the grab-broken-event signal, noticed by Damon Chaplin.
1067
1068 2005-09-21  Tor Lillqvist  <tml@novell.com>
1069
1070         * gdk/win32/gdkselection-win32.c (gdk_selection_convert,
1071         gdk_text_property_to_text_list_for_display,
1072         gdk_text_property_to_utf8_list_for_display,
1073         gdk_win32_selection_add_targets,
1074         _gdk_win32_selection_convert_to_dib): Free return value from
1075         gdk_atom_name().
1076         (gdk_text_property_to_text_list_for_display): Drop GError variable
1077         that isn't actually used after being set.
1078
1079 2005-09-20  Johan Dahlin  <jdahlin@async.com.br>
1080
1081         * gtk/gtkentry.c (gtk_entry_set_completion): Mention NULL in 
1082         documentation.
1083
1084 2005-09-20  Tor Lillqvist  <tml@novell.com>
1085
1086         * gdk/win32/gdkselection-win32.c
1087         (gdk_selection_owner_get_for_display): Do return the correct owner
1088         for CLIPBOARD (i.e., the owner of the Windows Clipboard, if it is
1089         a window GDK knows about). The reason to return NULL seems to have
1090         gone when in the fix for bug #163702 the artificial
1091         GDK_SELECTION_CLEAR event generation was removed from
1092         gdk_selection_send_notify_for_display(). Fixes bug #316552.
1093
1094 2005-09-20  Matthias Clasen  <mclasen@redhat.com>
1095
1096         Avoid unnecessary XkbGetState() calls and XkbStateNotify
1097         events.  (#151555, Søren Sandmann)
1098
1099         * gdk/x11/gdkdisplay-x11.c (gdk_display_open): Use 
1100         XkbSelectEventDetails() to select XkbStateNotify events
1101         for only the state we care about.
1102
1103         * gdk/x11/gdkprivate-x11.h:
1104         * gdk/x11/gdkkeys-x11.c (_gdk_keymap_state_changed): Pass
1105         the event into the function and update the keymap state from
1106         the state information contained in the event. Adjust all callers.
1107         
1108 2005-09-19  Matthias Clasen  <mclasen@redhat.com>
1109
1110         * gtk/gtkiconview.c: Use g_list_nth_data() instead of g_list_nth()->data
1111         in multiple places to avoid segfaults if the index is out of range.  
1112         (#316422, Guillaume Cottenceau)
1113         (gtk_icon_view_set_drag_dest_item): 
1114         (gtk_icon_view_scroll_to_path): Fix a typo in the docs.  (#316419,
1115         #316424, Guillaume Cottenceau)
1116
1117 2005-09-18  Hans Breuer  <hans@breuer.org>
1118
1119         * gtk/gtktrayicon-win32.c : now handling events by hard-coded 
1120         g_signal_emit_by_name() - will break when gtkstatusicon.c changes.
1121
1122 2005-09-18  Hans Breuer  <hans@breuer.org>
1123
1124         * gdk/gdk.symbols gdk/win32/gdkwin32.h gdk/win32/gdkcursorwin32.c : export
1125         _gdk_win32_pixbuf_to_hicon() as gdk_win32_pixbuf_to_hicon_libgtk_only()
1126         * gtk/gtktrayicon-win32.c : a lot of debug spew but it has started to show
1127         the icon and is blinking with teststatusicon. More to come ...
1128
1129 2005-09-18  Hans Breuer  <hans@breuer.org>
1130
1131         * gtk/makefile.msc.in : fix typo for GTK_VER; define HAVE_CONFIG_H
1132         cause gtkprogressbar.c has #include <config.h> conditionally; less
1133         noise from generated gtk.def
1134         * gtk/stock-icons/makefile.msc gdk/makefile.msc tests/makefile.msc : updated
1135         
1136         * gtk/gtktrayicon-win32.c : dummy implmentation to make gtk compile.
1137         For me it works as well as the *NIX implemenation, that is not at all.
1138
1139         * gdk/win32/gdkproperty-win32.c : implement gdk_atom_intern_static_string()
1140
1141         * gdk/win32/gdkwindow-win32.c(gdk_window_set_urgency_hint) : only use
1142         only use (WINVER >= 0x0500) when available from the SDK. Otherwise fall
1143         back to true dynamic linking of FlashWindowEx. Makes gtk+ work on NT4.0
1144         again - if compiled properly.
1145
1146         * tests/teststatusicon.c : don't use GNOME icons for testing, but icons
1147         already coming with Gtk+. Makes it compile on win32.
1148
1149 2005-09-18  Guilherme de S. Pastore  <gpastore@cvs.gnome.org>
1150
1151         * README.cvs-commits: fixed some tiny typos
1152
1153 2005-09-16  Tor Lillqvist  <tml@novell.com>
1154
1155         * modules/engines/ms-windows/msw_style.c (draw_extension,
1156         draw_box_gap): Check whether the widget actually is a GtkNotebook
1157         before treating it as such. Drop some unneeded local variables,
1158         use parameter with same information instead. (#316412)
1159
1160 2005-09-15  Federico Mena Quintero  <federico@ximian.com>
1161
1162         * tests/autotestfilechooser.c: Start a set of automated tests for
1163         the file chooser.  The only test in there right now doesn't pass
1164         yet.  It specifies the intended behavior of the first optimization
1165         of a series which I'll do on the file chooser (see
1166         http://primates.ximian.com/~federico/news-2005-09.html#14 for the
1167         details of this optimization).
1168
1169         * tests/Makefile.am: Added autotestfilechooser.c.
1170
1171         * gtk/gtkfilechooserprivate.h (struct
1172         _GtkFileChooserDialogPrivate): Move all the file chooser's private
1173         structures to here, so that they can be accessed by
1174         tests/autotestfilechooser.c:  _GtkFileChooserDialogPrivate,
1175         _GtkFileChooserWidgetPrivate, LoadState, _GtkFileChooserDefault.
1176
1177         * gtk/gtkfilechooserdialog.c: See above.
1178
1179         * gtk/gtkfilechooserwidget.c: See above.
1180
1181         * gtk/gtkfilechooserdefault.c: See above.
1182
1183 Thu Sep 15 15:27:55 2005  Tim Janik  <timj@imendio.com>
1184
1185         * gtk/gtkwindow.c: 
1186         gtk_window_map_event(): new function to work around lost unmap requests.
1187         fixes bug #316180.
1188
1189 2005-09-14  Federico Mena Quintero  <federico@ximian.com>
1190
1191         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_init): Add
1192         an easy-to-find profiling marker when starting to create a file
1193         chooser.
1194         (browse_files_model_finished_loading_cb): Likewise, for when the
1195         chooser is finished loading.
1196
1197 2005-09-14  Tristan Van Berkom <tvb@cvs.gnome.org>
1198
1199         * gtk/gtkcolorbutton.c: Check "color" argument in 
1200         gtk_color_button_set_color ()
1201
1202 2005-09-14  Matthias Clasen  <mclasen@redhat.com>
1203
1204         * gtk/gtklabel.c (gtk_label_get_type): 
1205         * gtk/gtkbutton.c (gtk_button_get_type): 
1206         * gtk/gtkwindow.c (gtk_window_group_get_type): No point in 
1207         using a mem chunk for window groups, buttons, labels.
1208
1209         * gtk/updateiconcache.c (foreach_remove_func): Fix
1210         a use-after-free bug.  (#316256, Alexander Nedotsukov)
1211
1212 2005-09-13  Matthias Clasen  <mclasen@redhat.com>
1213
1214         * gtk/*.c: Various cleanups.  (#315360, Kjartan Maraas)
1215
1216         * gdk/*.c: Various cleanups.  (#315359, Kjartan Maraas)
1217         
1218 2005-09-13  Matthias Clasen  <mclasen@redhat.com>
1219
1220         * gtk/gtkimcontextsimple.c (gtk_im_context_simple_filter_keypress): 
1221         Let GDK_Return pass through in some more cases.
1222
1223         * gtk/gtkentry.c (gtk_entry_key_press): Reset the im context before
1224         activating the entry. 
1225
1226         * gtk/gtkiconview.c (gtk_icon_view_class_init):
1227         (gtk_icon_view_get_dest_item_at_pos):  Fix typos in the 
1228         docs.  (#316008, #316027, #316121, Guillaume Cottenceau)
1229
1230         * gtk/gtkfilechooser.c (gtk_file_chooser_class_init): Add some docs.
1231         (#316001, Guillaume Cottenceau)
1232
1233         * gtk/gtkdnd.c (gtk_drag_set_icon_name): Fix a copy-and-paste
1234         mistake in the docs.  (#315993, Guillaume Cottenceau)
1235
1236         * tests/testentrycompletion.c (create_simple_completion_model): Add
1237         some strings containing multibyte characters.
1238
1239         * gtk/gtkentrycompletion.c (gtk_entry_completion_real_insert_prefix): 
1240         Fix prefix insertion for multibyte characters.  (#316095,
1241         Tommi Komulainen)
1242
1243         * gtk/gtktreeview.c (gtk_tree_view_create_row_drag_icon): 
1244         * gtk/gtkiconview.c (gtk_icon_view_create_drag_icon): Silently
1245         return NULL if the widget is not realized.  (#316023,
1246         Guillaume Cottenceau)
1247
1248 2005-09-11  Matthias Clasen  <mclasen@redhat.com>
1249
1250         * gdk/gdk.symbols: 
1251         * gdk/gdkproperty.h: 
1252         * gdk/x11/gdkproperty-x11.c (gdk_atom_intern_static_string): 
1253         New function to avoid pointless strdups when creating atoms
1254         from static strings.  
1255
1256         * gdk/x11/*.c:
1257         * gtk/*.c:  Use gdk_atom_intern_static_string() where 
1258         appropriate.
1259
1260 2005-09-09  Matthias Clasen  <mclasen@redhat.com>
1261
1262         * gtk/gtkcellrendererkeys.h: 
1263         * gtk/gtkcellrendererkeys.c: Add a cell renderer for displaying
1264         and editing accelerators, a port of EggCellRendererKeys .
1265
1266         * gtk/gtk.symbols:
1267         * gtk/gtk.h:
1268         * gtk/Makefile.am: Add the keys cell renderer.
1269
1270         * tests/Makefile.am: 
1271         * tests/testkeys.c: Test GtkCellRendererKeys
1272
1273 2005-09-09  Matthias Clasen  <mclasen@redhat.com>
1274
1275         Make it possible to determine if a key event is for a
1276         modifier key:
1277         
1278         * gdk/x11/gdkprivate-x11.h: 
1279         * gdk/x11/gdkkeys-x11.c (_gdk_keymap_key_is_modifier): 
1280         New function to determine if a keycode is mapped to a modifier.
1281         (get_xkb): Get the modmap.
1282
1283         * gdk/x11/gdkevents-x11.c (translate_key_event): Set the 
1284         is_modifier bit by calling _gdk_keymap_key_is_modifier().
1285
1286         * gdk/gdkevents.h (struct _GdkEventKey): Add an is_modifier
1287         bit.
1288
1289 2005-09-09  Matthias Clasen  <mclasen@redhat.com>
1290
1291         * gdk/gdkpixbuf-drawable.c (convert_real_slow): Remove an 
1292         unused variable, noticed by Kjartan Maraas.
1293
1294 2005-09-09  Matthias Clasen  <mclasen@redhat.com>
1295
1296         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_button_event): 
1297         Make drag reordering work properly for columns other than the
1298         first.  (#315054, Dan Winship)
1299         
1300         * gtk/gtkfontsel.c (gtk_font_selection_set_font_name): Handle 
1301         invalid fontnames better. (#136926, Michael R. Walton)
1302         
1303         Stop cursor blinking in non-editable regions of a text view.
1304         (#311508, Torbjörn Andersson)
1305         
1306         * gtk/gtktextview.c (gtk_text_view_check_cursor_blink): 
1307         (cursor_blinks): Take editability into account when deciding
1308         whether the cursor blinks.
1309         (gtk_text_view_button_release_event): 
1310         (gtk_text_view_move_cursor_internal): Update cursor blinking here.
1311
1312         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_start_editing): 
1313         Use connect_after to connect to the focus_out event. This
1314         ensures that the entry has already stopped blinking by the time
1315         we emit the edited signal.  (#315229, Thomas Leonard)
1316
1317         * tests/testgtk.c: Use GDK_MOD1_MASK, not GDK_ALT_MASK.
1318
1319         * gtk/gtkwindow.c (gtk_window_parse_geometry): Don't set
1320         unsigned ints to -1.  (#315481, Kjartan Maraas)
1321
1322         * gtk/gtkcalendar.c (gtk_calendar_init): first_weekday is relative
1323         to week_1stday, not to Sunday. Gotta love the ISO 14652 guys...
1324         (#314473, Stanislav Brabec)
1325
1326 2005-09-09  Matthias Clasen  <mclasen@redhat.com>
1327
1328         * gtk/gtktreeview.c (gtk_tree_view_get_visible_range): Document
1329         memory handling.  (#314975, Torsten Schoenfeld)
1330
1331         * gtk/gtkiconview.c (gtk_icon_view_class_init): 
1332         * gtk/gtkfilesel.c (gtk_file_selection_class_init): 
1333         * gtk/gtkcombobox.c (gtk_combo_box_class_init): 
1334         * gtk/gtklabel.c (gtk_label_class_init): 
1335         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_class_init): 
1336         Stylistic improvements and clarifications for some blurbs. 
1337         (#315520, Clytie Siddall)
1338
1339 2005-09-09  Tor Lillqvist  <tml@novell.com>
1340
1341         * gdk/win32/gdkdisplay-win32.c (gdk_display_get_name): Cache the
1342         display name. There is only one GdkDisplay on Win32, and
1343         constructing the display name isn't entirely trivial, so cacheing
1344         is probably worth it. For instance GIMP calls this function a lot.
1345         (gdk_display_open): Call gdk_display_get_name() to prime the
1346         cached name.
1347         (gdk_display_get_n_screens, gdk_display_get_screen,
1348         gdk_display_get_default_screen): Verify parameter correctness like
1349         the X11 backend does.
1350
1351         * gdk/win32/gdkscreen-win32.c (gdk_screen_make_display_name):
1352         Return a freshly allocated string, as the API specifies. Fixes a
1353         heap corruption problem that caused random errors and crashes in
1354         GIMP, for instance.
1355
1356 2005-09-07  Matthias Clasen  <mclasen@redhat.com>
1357
1358         * gtk/gtkimcontextsimple.c (gtk_im_context_simple_filter_keypress): 
1359         Make C-u commit and restart hex input if we are already in a
1360         hex sequence.
1361
1362 2005-09-06  Matthias Clasen  <mclasen@redhat.com>
1363
1364         * gdk/x11/gdkkeys-x11.c (update_modmap): Make the modmap reflexive.
1365         (_gdk_keymap_add_virtual_modifiers): Don't add both Alt and Meta
1366         if they are mapped to the same modifier.
1367
1368         * gtk/Makefile.am: Rename gtkstatusicon-x11.c and gtktrayicon.c
1369         to gtkstatusicon.c and gtktrayicon-x11.c
1370
1371         * gtk/gtkaccelgroup.c: Include Super, Hyper and Meta in the
1372         default accel mod mask.
1373
1374         * gtk/gtkaccelgroup.c (gtk_accelerator_parse): 
1375         * gtk/gtkaccellabel.c (_gtk_accel_label_class_get_accelerator_label): 
1376         Don't use GDK_ALT_MASK.
1377
1378         * gdk/gdktypes.h: No need to introduce GDK_ALT_MASK
1379
1380 2005-09-06  Matthias Clasen  <mclasen@redhat.com>
1381
1382         Add support for extra virtual modifiers:  (#85780, Owen Taylor)
1383         
1384         * tests/testgtk.c (create_key_lookup): Add tests for extra virtual
1385         modifiers.
1386
1387         * gtk/gtkkeyhash.c (_gtk_key_hash_lookup): Try to match both against
1388         Mod2 - Mod5 and against Super, Hyper, Meta.
1389
1390         * gtk/gtkaccellabel.c (_gtk_accel_label_class_get_accelerator_label): 
1391         * gtk/gtkaccelgroup.c (gtk_accelerator_parse) 
1392         (gtk_accelerator_name): Support Super, Hyper Meta and Mod2 - Mod5.
1393
1394         * gdk/x11/gdkkeys-x11.c (struct _GdkKeymapX11): Add a 
1395         modmap to maintain the information which X modifiers map to
1396         virtual modifiers.
1397         (get_xkb): Set up the modmap from the XKB tables.
1398         (update_keymaps): Set up the modmap from the information returned
1399         by XGetModifierMapping in the non-XKB case.
1400
1401         * gdk/x11/gdkprivate-x11.h: 
1402         * gdk/x11/gdkkeys-x11.c (_gdk_keymap_add_virtual_modifiers): New 
1403         function to set the virtual modifiers in the state.
1404
1405         * gdk/x11/gdkevents-x11.c (translate_key_event): Call 
1406         _gdk_keymap_add_virtual_modifiers here.
1407
1408         * gdk/gdktypes.h (GdkModifierType): Add bits for virtual Super, 
1409         Hyper and Meta modifiers. Also add GDK_ALT_MASK as an alias
1410         for GDK_MOD1_MASK.
1411
1412 2005-09-05  Matthias Clasen  <mclasen@redhat.com>
1413
1414         * gtk/gtkaction.c (connect_proxy): Set the label of a button
1415         if it has no child.  (#315253, John Finlay)
1416
1417 2005-09-02  Matthias Clasen  <mclasen@redhat.com>
1418
1419         * gtkimcontextsimple.h: Add a modifiers_dropped bit
1420
1421 2005-09-02  Matthias Clasen  <mclasen@redhat.com>
1422
1423         * gtk/gtkentry.c (gtk_entry_destroy): Disconnect idle handlers
1424         on destroy to avoid problems when they are called on a destroyed
1425         widget.  (#315135, John Cupitt)
1426         
1427         * gtk/gtkentry.c (gtk_entry_class_init):
1428         * gtk/gtktextview.c (gtk_text_view_class_init): Add bindings
1429         for Ctrl-Shift-A to unselect all.  (#309301, Kathy Fernandes)
1430
1431         * gtk/gtkimcontextsimple.c: Rework the Unicode hex input
1432         code. Now we only steal a single key combination, Ctrl-Shift-U,
1433         instead of sixteen. 
1434         A hex Unicode sequence must be started with Ctrl-Shift-U, followed
1435         by a sequence of hex digits entered with Ctrl-Shift still held.
1436         Releasing one of the modifiers or pressing space while the modifiers
1437         are still held commits the character. It is possible to erase
1438         digits using backspace.
1439         As an extension to the above, we also allow to start the sequence
1440         with Ctrl-Shift-U, then release the modifiers before typing any
1441         digits, and enter the digits without modifiers.
1442         (#82011, Owen Taylor)
1443         
1444 2005-09-02  Matthias Clasen  <mclasen@redhat.com>
1445
1446         * gtk/gtkmain.c (gtk_get_event_widget): If the window is destroyed,
1447         we still need to deliver the destroy event.  (#314980, Chris Lahey)
1448
1449         * gtk/gtktextview.c (gtk_text_view_key_press_event): Reset 
1450         im context before committing \n or \t.
1451
1452 2005-09-02  Alexander Larsson  <alexl@redhat.com>
1453
1454         * gtk/gtkfilechooserdefault.c: (shortcuts_add_volumes),
1455         (shortcuts_activate_volume):
1456         Handle base_path being null in the rest of the cases (#310270)
1457
1458 2005-09-02  Tor Lillqvist  <tml@novell.com>
1459
1460         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Keep track of
1461         cursor position also in root window coordinates. Prune out
1462         superfluous WM_MOUSEMOVE events even earlier, based on root window
1463         coordinates. Windows sends WM_MOUSEMOVE messages after a new
1464         window has ben mapped below the cursor even if the mouse doesn't
1465         move. We used to generate GDK_MOTION_NOTIFY in these cases. This
1466         confused at least gtk_menu_motion_notify(). (#314995)
1467
1468         * gtk/gtkintl.h: No need to include config.h here. It caused
1469         warnings about GTK_LOCALEDIR being redefined on Win32 when
1470         compiling files where gtkintl.h is included after gtkprivate.h
1471         (which #undefines and re-#defines GTK_LOCALEDIR on Win32).
1472
1473         * gtk/gtkplug.c: Include config.h.
1474
1475 2005-09-01  Matthias Clasen  <mclasen@redhat.com>
1476
1477         * gtk/gtkfilesystemunix.c: Pass statbufs down to 
1478         xdg_mime_get_mime_type_for_file() where possible, to avoid
1479         useless re-stating.  
1480         
1481         * gtk/gtkaction.c (gtk_action_get_accel_closure): Fix doc
1482         typo.  (#314921, Guillaume Cottenceau)
1483
1484         * gdk/*.c: Intern some more strings.
1485         * gtk/gtkintl.h: 
1486         * gtk/*.c: Define an I_() macro and use it instead of the 
1487         bulky g_intern_static_string().
1488
1489 2005-08-31  Matthias Clasen  <mclasen@redhat.com>
1490
1491         * gtk/gtkbindings.c (binding_signal_new): Intern the signal name
1492         instead of copying it.
1493
1494         * gtk/gtktypeutils.c (gtk_identifier_get_type): Some more string interning.
1495
1496         * gtk/*.c: Also intern static strings passed to 
1497         g_object_set_data().
1498
1499         * gdk/Makefile.am: 
1500         * gtk/Makefile.am: Intern type names in code generated by 
1501         glib-mkenums, too.
1502
1503         * gtk/*.c: 
1504         * gdk/x11/*.c: 
1505         * gdk/*.c: Intern type names before registering the type to avoid 
1506         unnecessary copies.
1507
1508         * configure.in: Require GLib 2.9.0
1509
1510 2005-08-31  Matthias Clasen  <mclasen@redhat.com>
1511
1512         * gtk/gtktoolbar.c: Undeprecate gtk_toolbar_set_icon_size(),
1513         and add icon-size and icon-size-set properties.  (#314172)      
1514
1515         * gtk/gtkwindow.c (gtk_window_set_transient_for): Inherit window
1516         groups across transient parents.  (#312918, Christian Persch)
1517
1518         * gtk/gtktreemodel.c: Some documentation fixes.  (#314882,
1519         Guillaume Cottenceau)
1520
1521         * gtk/gtktextiter.c (gtk_text_iter_backward_visible_cursor_positions): 
1522         Fix a typo in the docs.  (#314878, Guillaume Cottenceau)
1523
1524 2005-08-30  Matthias Clasen  <mclasen@redhat.com>
1525
1526         * gtk/gtkentry.c (gtk_entry_class_init): Add key bindings to
1527         make C-/ select all and C-\ unselect all.  (#309301,
1528         Kathy Fernandez)
1529
1530         * gtk/gtkimcontextsimple.c: Change the compose sequence for
1531         soft hyphen to be multi_key-minus-minus-space, and add
1532         compose sequences multi_key-minus-minus-period and 
1533         multi_key-minus-minus-minus for en dash and em dash.
1534         (#172653, Christian Lohmaier)
1535
1536         * gtk/gtkentry.c (gtk_entry_draw_frame): Fix some unused
1537         code.  (#313946, Christian Persch)
1538
1539         * gtk/gtkuimanager.c (gtk_ui_manager_class_init): Another
1540         fix for the default value of the "ui" property.
1541
1542 2005-08-30  Matthias Clasen  <mclasen@redhat.com>
1543
1544         * gtk/gtk.symbols: 
1545         * gtk/gtkselection.h:
1546         * gtk/gtkselection.c: Add functions which look for text, image
1547         or uri targets in an array of atoms.   (#314089, Mark Wielaard)
1548
1549         * gtk/gtk.symbols: 
1550         * gtk/gtkselection.h:
1551         * gtk/gtkselection.c (gtk_selection_data_targets_include_uri): 
1552         Add a function to check wether targets include uri.  
1553         (#314092, Mark Wielaard)
1554         
1555         * gtk/gtk.symbols: 
1556         * gtk/gtkwindow.h: 
1557         * gtk/gtkwindow.c: Add a deletable property with getter
1558         and setter, to control the close button in the window 
1559         frame.  (#59718, Havoc Pennington)
1560
1561 2005-08-29  Matthias Clasen  <mclasen@redhat.com>
1562
1563         * gtk/gtkrc.key.emacs: Add C-n/C-p/C-f/C-b as alternatives
1564         to the arrow keys for menu navigation.  (#162825, Carl Worth)
1565
1566         * gtk/gtkentry.c, gtk/gtktextview.c: More typo fixes
1567
1568         * gtk/gtksocket-x11.c, gtk/gtkstatusicon-x11.c: Fix typos.
1569
1570         * gtk/gtkstatusicon-x11.c (gtk_status_icon_new_from_stock): 
1571         * gtk/gtkimage.c (gtk_image_new_from_stock): Don't
1572         refer to nonexisting stock ids.
1573
1574         * gtk/gtktextview.c (popup_targets_received): 
1575         * gtk/gtkentry.c (popup_targets_received): Construct
1576         the "Select All" menuitem from stock.
1577
1578         * gtk/stock-icons/stock_select_all_{16,24}.png:
1579         * gtk/stock-icons/Makefile.am: 
1580         * gtk/gtkiconfactory.c:
1581         * gtk/gtkstock.h: 
1582         * gtk/gtkstock.c: Add a "Select All" stock item.  (#78545,
1583         Calum Benson)
1584
1585         * gtk/gtktrayicon.c: Add a pointer to the spec.
1586
1587         * gtk/gtkstatusicon-x11.c: Add docs.
1588
1589         * gtk/gtkstatusicon.h: Fix a typo.
1590
1591         Add a cross-platform "tray icon" API, by
1592         porting EggStatusIcon/EggTrayIcon (#105101)
1593         
1594         * gtk/gtkstatusicon.h: A GtkStatusIcon is an object which
1595         displays an icon in a notification area.
1596
1597         * gtk/gtkstatusicon-x11.c: GtkStatusIcon implementation for
1598         X11, using GtkTrayIcon.
1599
1600         * gtk/gtktrayicon.h: 
1601         * gtk/gtktrayicon.c: An implementation of the freedesktop.org
1602         system tray specification, not public API.
1603
1604         * gtk/gtk.symbols: Add new exported functions.
1605
1606         * gtk/gtk.h: Include gtkstatusicon.h.
1607
1608         * gtk/Makefile.am: Add new files.
1609
1610         * tests/Makefile.am:
1611         * tests/teststatusicon.c: Test for GtkStatusIcon.
1612
1613 2005-08-29  Christopher Aillon  <caillon@redhat.com>
1614
1615         * gtk/gtkstock.c: Add builtin GtkStockItems for GTK_STOCK_CONNECT
1616         and GTK_STOCK_DISCONNECT
1617         
1618 2005-08-29  Matthias Clasen  <mclasen@redhat.com>
1619
1620         * gtk/gtksocket-x11.c (_gtk_socket_windowing_embed_notify): 
1621         Use XFixesChangeSaveSet if available.  (#314682)
1622
1623         * gtk/gtkmenu.c (gtk_menu_grab_notify):  Only cancel if the menu
1624         was active.  (#314298, Christian Persch, analysis by Mark McLoughlin)
1625
1626 2005-08-29  Matthias Clasen  <mclasen@redhat.com>
1627
1628         * gtk/gtkiconcache.c (_gtk_icon_cache_get_icon): Remove an
1629         accidentally leftover duplicate pixbuf creation.  (#314700,
1630         Kjartan Maraas)
1631
1632         * gtk/gtksettings.c (settings_update_cursor_theme): Don't 
1633         leak the cursor theme name.  (#314693, Kjartan Maraas)
1634
1635         * gdk/x11/gdkasync.c (_gdk_x11_get_window_child_info): Free 
1636         state.children in all cases.  (#313862, Kjartan Maraas)
1637
1638 2005-08-28  Matthias Clasen  <mclasen@redhat.com>
1639
1640         * po/POTFILES.in, po-properties/POTFILES.in:
1641         Add gdk/gdkscreen.c
1642
1643 2005-08-27  Matthias Clasen  <mclasen@redhat.com>
1644
1645         * gtk/gtkuimanager.c (gtk_ui_manager_class_init): Fix the default
1646         value of the ui property. (#314532, Yong Wang)
1647
1648         * gdk/x11/gdkproperty-x11.c (gdk_property_get): Don't warn
1649         when G_MAXLONG is passed as length.  
1650
1651 2005-08-26  Matthias Clasen  <mclasen@redhat.com>
1652
1653         * gtk/updateiconcache.c: Add a separate --ignore-theme-index option
1654         to avoid overloading --force.  (JP Rosevaar)
1655
1656 2005-08-26  Matthias Clasen  <mclasen@redhat.com>
1657
1658         * configure.in: Bump version to 2.9.0
1659
1660         * gdk/gdk.symbols: 
1661         * gdk/gdkscreen.h: 
1662         * gdk/gdkscreen.c: Make the GdkScreen font options api
1663         public, and add properties GdkScreen::font-options and
1664         GdkScreen::resolution.  (#314004)
1665
1666         * gdk/gdkpango.c:
1667         * gtk/gtksettings.c:
1668         * gtk/gtkwidget.c: Adjust all callers.
1669         
1670         * gdk/gdkintl.h: Simplify and use glib/gi18n-lib.h.
1671         * gdk/gdkpango.c: Include gdkintl.h, not gtkintl.h.
1672         * gdk/gdkscreen.c: Include gdkintl.h.
1673
1674         * gtk/gtkicontheme.c (theme_lookup_icon): Avoid an uninitialized
1675         variable warning, pointed out by Colin Walters. (#314585)
1676
1677 2005-08-26  Tor Lillqvist  <tml@novell.com>
1678
1679         * gtk/gtkfilesystemwin32.c: Remove some ifdeffed out debugging
1680         printouts.
1681         (gtk_file_system_win32_parse): Don't mishandle UNC paths. (#314519)
1682
1683 2005-08-26  Matthias Clasen  <mclasen@redhat.com>
1684
1685         * gtk/gtkcalendar.c (gtk_calendar_init): Fix the calculation
1686         of week_start.  (#314473, JP Rosevaar)
1687
1688 2005-08-25  Thomas Fitzsimmons  <fitzsim@redhat.com>
1689
1690         * gtk/gtkfilesystemmodel.c (idle_finished_loading_cb): Acquire GDK
1691         lock.  (#314533, Thomas Fitzsimmons)
1692
1693 2005-08-25  Matthias Clasen  <mclasen@redhat.com>
1694
1695         * gtk/gtktoolbar.c (_gtk_toolbar_elide_underscores): Handle
1696         NULL gracefully.  (#314523, Ed Catmur)
1697
1698 2005-08-25  Owen Taylor  <otaylor@redhat.com>
1699
1700         * gdk/x11/gdkcursor-x11.c (gdk_x11_display_set_cursor_theme): 
1701         Handle theme == NULL.
1702
1703 2005-08-25  Matthias Clasen  <mclasen@redhat.com>
1704
1705         * gtk/gtkmenutoolbutton.c (menu_position_func): Take widget
1706         y offset into account when positioning the popup.  (#314470,
1707         Christian Persch)
1708
1709 2005-08-25  Owen Taylor  <otaylor@redhat.com>
1710
1711         * gdk/gdkscreen.c (gdk_screen_get_type): Use gdk_screen_init
1712         as instance_init, not base_init! (#314452, Fix from Frederic
1713         Crozat, reported by Joe Marcus Clarke). Trivial cleanup: use -1.
1714         rather than 1 for a negative flag value.
1715
1716 2005-08-24  Owen Taylor  <otaylor@redhat.com>
1717
1718         * gdk/gdkpango.c (draw_error_underline): Add a note about
1719         cut-and-paste between here and Pango.
1720
1721 2005-08-24  Matthias Clasen  <mclasen@redhat.com>
1722
1723         * === Released 2.8.2 ===
1724
1725         * gtk/gtkclipboard.c (request_image_received_func): Use the correct
1726         callback for image/gif, and also try image/bmp.  (#314086,  Mark 
1727         Wielaard)
1728
1729         * gtk/gtkfilesystemunix.c (gtk_file_system_unix_volume_render_icon): 
1730         Use gnome-dev-harddisk for volumes, not gnome-fs-blockdev.  (#314382,
1731         Sebastien Bacher)
1732         
1733         * NEWS: Updates
1734
1735         * gtk/gtksettings.c (gtk_settings_get_for_screen): Make sure font
1736         and cursor settings get propagated down to the screen initially.
1737         Pointed out by Frederic Crozat.
1738
1739         * gtk/gtkicontheme.c (ensure_valid_themes): Don't try to send a client
1740         message if the screen is NULL. Noticed by Kjartan Maraas.
1741
1742 2005-08-24  Matthias Clasen  <mclasen@redhat.com>
1743
1744         * Bump version
1745
1746         * === Released 2.8.1 ===
1747
1748         * NEWS: Updates
1749         
1750 2005-08-24  Matthias Clasen  <mclasen@redhat.com>
1751
1752         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_visible): Protect
1753         against lazy filterers which return values other than TRUE or
1754         FALSE from their visible func.  (#314335)
1755
1756 2005-08-23  Owen Taylor  <otaylor@redhat.com>
1757
1758         Fix for #314004, reported by Michael Reinsch:
1759
1760         * gdk/gdk.symbols:
1761         * gdk/gdkscreen.[ch]: Add gdk_screen_get/set_font_options_libgtk_only()
1762         Add gdk_screen_get/set_resolution_libgtk_only()
1763
1764         * gdk/gdkpango.c (gdk_pango_context_get_for_screen): Set
1765         the options for the screen on the newly created context.
1766
1767         * gtk/gtksettings.c (settings_update_font_options/dpi) gtkwidget.c: 
1768         Move font options and dpi code from gtkwidget.c to gtksettings.c, set
1769         the font options on the screen.
1770
1771         * gtk/gtkwidget.c (gtk_widget_update_pango_context): Just get
1772         the font options from the screen and set them on the context.
1773
1774 2005-08-23  Kristian Rietveld  <kris@gtk.org>
1775
1776         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_row_inserted): don't
1777         bother inserting new rows in a level with a zero refcount and
1778         immediately free the level. (Fixes #312350, reported by Markku Vire).
1779
1780 2005-08-23  Matthias Clasen  <mclasen@redhat.com>
1781
1782         * gtk/updateiconcache.c: Complain when there is no index.theme file
1783         in the specified directory, unless --force is used. Also add an
1784         --index-only option to create caches without image data.
1785
1786         * gtk/gtkfilechooserdefault.c (shortcuts_append_desktop): Fix a
1787         C99ism.  (#314262, Robert Jeff Mitchell)
1788         
1789 2005-08-22  Manish Singh  <yosh@gimp.org>
1790
1791         * gtk/gtkicontheme.h: add declaration for _gtk_icon_theme_check_reload.
1792
1793         * gtk/gtkwindow.c: remove declaration of gtk_window_read_rcfiles.
1794
1795 2005-08-22  Matthias Clasen  <mclasen@redhat.com>
1796
1797         * gtk/gtkwindow.c (gtk_window_client_event): 
1798         * gtk/gtkicontheme.c (ensure_valid_themes) 
1799         (_gtk_icon_theme_check_reload): Implement a clientmessage based
1800         scheme for makeing sure that all GTK+ applications notice if an
1801         icon theme has been updated. This should prevent multiple versions
1802         of an icon theme cache to be mapped in memory at the same time,
1803         which can cause excessive memory consumption.  (#313156, Chris 
1804         Lahey)
1805
1806 2005-08-22  Matthias Clasen  <mclasen@redhat.com>
1807
1808         * gtk/gtkicontheme.c (gtk_icon_theme_load_icon): Add a note
1809         regarding icon theme changes.
1810
1811         * gtk/gtkiconcache.c (_gtk_icon_cache_get_icon): When returning
1812         pixbufs which are backed by the mmapped memory of an icon cache,
1813         increase the refcount of the icon cache, so that the memory is not
1814         munmapped away underneath the pixbuf upon icon theme changes.  
1815         (#314170, Kjartan Maraas)
1816
1817         * docs/tools/Makefile.am (LDADDS): Add GTK_DEP_LIBS, in order 
1818         to link against Xext.  (#314062)
1819
1820         * gtk/gtkhsv.c (paint_triangle): One more fix to prevent buffer
1821         overruns.  (#314081, Hans Breuer)
1822
1823 2005-08-20  Matthias Clasen  <mclasen@redhat.com>
1824
1825         * gtk/gtkentry.c (gtk_entry_get_layout): Clarify that the
1826         returned layout must not be modified.
1827
1828 Sat Aug 20 16:12:14 2005  Jonathan Blandford  <jrb@redhat.com>
1829
1830         * gtk/gtktreeview.c (gtk_tree_view_set_model): clear
1831         scroll_to_path if the model changes.
1832
1833         * gtk/gtkiconview.c: (gtk_icon_view_destroy),
1834         (gtk_icon_view_size_allocate), (gtk_icon_view_set_cursor),
1835         (gtk_icon_view_scroll_to_path): Handle scrolling to a path before
1836         we're realized, #312798
1837         (gtk_icon_view_set_model): clear scroll_to_path if the model
1838         changes.
1839
1840 2005-08-20  Matthias Clasen  <mclasen@redhat.com>
1841
1842         * gtk/gtkrange.c (gtk_range_adjustment_changed) 
1843         (gtk_range_adjustment_value_changed):  Don't queue a draw
1844         if the layout has not changed.  (#313991, Benjamin Berg)
1845
1846 2005-08-19  Matthias Clasen  <mclasen@redhat.com>
1847
1848         * gtk/gtktreeitem.c: Remove duplicate lines.  (#313344,
1849         Benoit Carpentier)
1850
1851         * modules/engines/ms-windows/msw_style.c (setup_system_styles): 
1852         Fix a typo. 
1853
1854         * gtk/gtkfilechooserbutton.c (change_icon_theme) 
1855         (model_add_special, model_add_special, model_add_volumes):
1856         Handle pixbuf being NULL without warnings. Also, don't
1857         leak pixbuf references when the icon theme is changed.
1858
1859         * gtk/gtkmain.c (gtk_get_event_widget): Don't access
1860         the user data on destroyed windows, since at best
1861         it can be a stale pointer.  (#313953, Robin Green)      
1862
1863 2005-08-19  Matthias Clasen  <mclasen@redhat.com>
1864
1865         * gtk/gtkhsv.c (paint_triangle): Avoid a buffer overrun.  
1866         (#313900, Sebastien Bacher)
1867
1868         * gtk/gtktreeview.c (gtk_tree_view_get_visible_range): Return
1869         FALSE if the tree is empty.  (#313891, Guillaume Cottenceau)
1870
1871         * gdk/x11/gdkdnd-x11.c (_gdk_drag_get_protocol_for_display) 
1872         (xdnd_read_actions, get_client_window_at_coords_recurse): 
1873         Free data returned from XGetWindowProperty. 
1874
1875         * gdk/x11/gdkevents-x11.c (fetch_net_wm_check_window) 
1876         Free data returned from XGetWindowProperty.  (313867, Kjartan
1877         Maraas)
1878         
1879         * gdk/x11/gdkdnd-x11.c (get_client_window_at_coords_recurse): Free
1880         children in all cases.  (#313862, Kjartan Maraas)
1881
1882         * gtk/gtkicontheme.c (theme_lookup_icon): Store GtkIconData structs 
1883         in the per-directory hash, even if they come from the icon cache. 
1884         We tried to avoid that before, but as a result leaked icon data
1885         structs.  (#313852, Kjartan Maraas)
1886
1887 2005-08-18  Matthias Clasen  <mclasen@redhat.com>
1888
1889         * gtk/gtkmenutoolbutton.c (gtk_menu_tool_button_destroy): Disconnect
1890         signal handlers on destroy, not on finalize.  (#313759, Brett Atoms)
1891
1892 2005-08-15  Owen Taylor  <otaylor@redhat.com>
1893
1894         * configure.in: Add -lXext to GDK_EXTRA_LIBS in absence of pkg-config
1895         files for x11/xext. (Jonas Bonn)
1896
1897 2005-08-15  Tor Lillqvist  <tml@novell.com>
1898
1899         * gtk/gtkicontheme.c (theme_lookup_icon): Put debugging printout
1900         inside GTK_NOTE.
1901
1902 2005-08-15  Owen Taylor  <otaylor@redhat.com>
1903
1904         * configure.in: Fix have_base_pc / have_base_x_pc typo.
1905
1906         * gdk/x11/gdkdrawable-x11.c gtk/gtksettings.c: Remove panoxft.h includes.
1907         (#313417, James Andrewartha)
1908
1909         * configure.in: Add fontconfig to X_PACKAGES, since we use it for
1910         FcNameConstant(). (More of #313417)
1911
1912 2005-08-15  Matthias Clasen  <mclasen@redhat.com>
1913
1914         * gtk/gtkfilechooserdefault.c: When using gtk_dialog_run() for
1915         modal dialogs, make sure to inherit the window group from 
1916         the parent, since we don't inherit window groups across
1917         transient parents currently.  (#312918, Christian Persch)
1918
1919         * gtk/gtkmessagedialog.c (gtk_message_dialog_new): 
1920         * gtk/gtkdialog.c (gtk_dialog_run): Slight update to the docs. 
1921
1922         * gtk/gtkiconview.c (gtk_icon_view_select_path) 
1923         (gtk_icon_view_scroll_to_path): Handle paths of depth 0
1924         gracefully.  (#312796, Jonathan Blandford)
1925
1926         * tests/testtoolbar.c: Add some more tests for menu placement.
1927
1928         * gtk/gtkmenutoolbutton.c (menu_position_func): 
1929         * gtk/gtktoolbar.c (menu_position_func): Improve positioning
1930         of toolbutton menus and of the overflow menu.  (#312937, 
1931         #153870, Christian Persch, Paolo Borelli)
1932
1933 2005-08-15  Tor Lillqvist  <tml@novell.com>
1934
1935         * gtk/updateiconcache.c: Use g_path_get_dirname() instead of
1936         the nonportable <libgen.h> and dirname().
1937
1938 2005-08-15  Matthias Clasen  <mclasen@redhat.com>
1939
1940         * gtk/gtksizegroup.c: Use object data to mark widgets and
1941         groups as visited, so that we avoid constant extra list
1942         traversals. Also allocate quarks in class_init.  (#311618,
1943         Michael Natterer)
1944
1945         * gtk/gtkicontheme.c (gtk_icon_theme_lookup_icon): Correct the 
1946         download location for the hicolor icon theme. (#313475, Olexiy 
1947         Avramchenko)
1948
1949         * gtk/gtkicontheme.c: Remove debug spew. 
1950
1951 2005-08-15  Owen Taylor  <otaylor@redhat.com>
1952
1953         * gdk/linux-fb/gdkwindow-fb.c (gdk_window_set_back_pixmap): 
1954         * gdk/win32/gdkwindow-win32.c (gdk_window_set_back_pixmap): 
1955         * gdk/x11/gdkwindow-x11.c (gdk_window_set_back_pixmap):
1956         Handle pixmap == NULL when checking for a colormap.
1957         (Allin Cottrell).
1958
1959 2005-08-14  Matthias Clasen  <mclasen@redhat.com>
1960
1961         * gtk/updateiconcache.c: Store only one copy of the pixel data
1962         for symlinked icons. To achieve this, maintain a hashtable 
1963         mapping pathnames to pixel data, and share the pixel data for
1964         all symlinks resolving to the same pathname. When writing out
1965         the image data, write out the pixel data only the first time
1966         it is met, and store the offset pointing to the first copy
1967         for use in all later cases.
1968         This reduces the size of the Bluecurve icon cache from 40
1969         to 13MB. (#312972)
1970